pages.urls   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 10
rs 10
c 0
b 0
f 0
1
""" url configuration """
2
from django.conf.urls import url
3
4
from . import views
5
6
urlpatterns = [
7
    # When not using a class, use line below
8
    # url(r'^$', views.index, name='index'),
9
    url(r'^$', views.IndexView.as_view(), name='index'),
10
]
11