1
0
Fork 0
mirror of synced 2024-09-30 00:56:17 +13:00
ArchiveBox/archivebox/core/views.py

18 lines
327 B
Python
Raw Normal View History

2019-04-03 09:36:41 +13:00
from django.shortcuts import render
2019-04-17 21:42:21 +12:00
from django.views import View
class MainIndex(View):
template = 'main_index.html'
def get(self, request):
return render(self.template, {})
class LinkDetails(View):
template = 'link_details.html'
def get(self, request):
return render(self.template, {})