dynamicweb/alplora/views.py

18 lines
467 B
Python
Raw Normal View History

from django.views.generic import TemplateView
from django.utils.translation import get_language
class IndexView(TemplateView):
template_name = "alplora/index.html"
def get_context_data(self, *args, **kwargs):
context = super(IndexView, self).get_context_data(**kwargs)
language = get_language()
context.update({
'language': language
})
return context
2017-02-16 07:15:00 +00:00
class LoginView(TemplateView):
template_name = "alplora/login.html"