dynamicweb/alplora/views.py
2017-02-16 02:45:00 -04:30

8 lines
193 B
Python

from django.views.generic import TemplateView
class IndexView(TemplateView):
template_name = "alplora/index.html"
class LoginView(TemplateView):
template_name = "alplora/login.html"