Total Complexity | 0 |
Total Lines | 8 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from django.http import HttpResponse |
||
2 | from django.views.generic import TemplateView |
||
3 | |||
4 | |||
5 | class DashboardView(TemplateView): |
||
6 | """The main author dashboard.""" |
||
7 | template_name = 'dashboard.html' |
||
8 |