comics.urls   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 7
dl 0
loc 10
rs 10
c 0
b 0
f 0
wmc 0
1
from django.conf.urls import url
2
from django.views.generic.base import TemplateView
3
4
from .views import DashboardView
5
6
7
urlpatterns = [
8
    url('^$', TemplateView.as_view(template_name='home.html'), name='home'),
9
    url('^dashboard/', DashboardView.as_view(), name='dashboard'),
10
]
11