tubesync/app/sync/views.py

10 lines
227 B
Python
Raw Normal View History

2020-11-23 06:32:02 +00:00
from django.views.generic import TemplateView
class IndexView(TemplateView):
template_name = 'sync/index.html'
def dispatch(self, request, *args, **kwargs):
return super().dispatch(request, *args, **kwargs)