Total Complexity | 0 |
Total Lines | 10 |
Duplicated Lines | 0 % |
Changes | 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 |