comics.views   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 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