diff options
author | adityacp | 2020-08-13 16:45:36 +0530 |
---|---|---|
committer | adityacp | 2020-08-13 16:45:36 +0530 |
commit | 3e970943db3385eab32bdbc7f85fb69cf4450552 (patch) | |
tree | 756919d16ed5358ca27a0afc54dfc254a816ba0f /workshop_portal/urls.py | |
parent | 067a34023597b6a23302a6fe4439025975737293 (diff) | |
download | workshop_booking-3e970943db3385eab32bdbc7f85fb69cf4450552.tar.gz workshop_booking-3e970943db3385eab32bdbc7f85fb69cf4450552.tar.bz2 workshop_booking-3e970943db3385eab32bdbc7f85fb69cf4450552.zip |
Fix login_url in settings and statistics in urls
Diffstat (limited to 'workshop_portal/urls.py')
-rw-r--r-- | workshop_portal/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/workshop_portal/urls.py b/workshop_portal/urls.py index 45f1407..59a7431 100644 --- a/workshop_portal/urls.py +++ b/workshop_portal/urls.py @@ -26,6 +26,7 @@ urlpatterns = [ url(r'^workshop/', include('workshop_app.urls')), url(r'^reset/', include('django.contrib.auth.urls')), url(r'^page/', include('cms.urls')), + url(r'^statistics/', include('statistics_app.urls')), ] urlpatterns += static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) |