mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 06:34:25 -04: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, {})
|