6 lines
163 B
Python
6 lines
163 B
Python
from django.utils.decorators import method_decorator
|
|
from django.views.generic import TemplateView
|
|
|
|
class AuthView(TemplateView):
|
|
template_name = "index.html"
|