accounts.urls   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

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