12 lines
316 B
Python
12 lines
316 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
class HomeView(TemplateView):
|
|
template_name = "base.html"
|
|
|
|
def get_context_data(self, *args, **kwargs):
|
|
context = super(HomeView, self).get_context_data(*args, **kwargs)
|
|
context['nav_home'] = True
|
|
return context
|