14 lines
329 B
Python
14 lines
329 B
Python
from django.http import HttpResponse
|
|
import datetime
|
|
|
|
from django.views.generic import TemplateView
|
|
|
|
|
|
class StatisticsView(TemplateView):
|
|
template_name = "statistics.html"
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context['test'] = 'hello'
|
|
return context
|