dynamicweb/alplora/views.py

9 lines
193 B
Python
Raw Normal View History

from django.views.generic import TemplateView
class IndexView(TemplateView):
template_name = "alplora/index.html"
2017-02-16 07:15:00 +00:00
class LoginView(TemplateView):
template_name = "alplora/login.html"