mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-26 22:20:21 +00:00
17 lines
327 B
Python
17 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, {})
|