1
0
Fork 0
mirror of synced 2024-06-28 11:00:35 +12:00
ArchiveBox/archivebox/core/views.py
2019-04-17 05:42:21 -04:00

18 lines
327 B
Python

from django.shortcuts import render
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, {})