From 99ccbac9e4b96524aa33b5005ce3f7aa029126f6 Mon Sep 17 00:00:00 2001 From: luxagraf Date: Thu, 3 Dec 2015 08:48:38 -0500 Subject: added namespace to all urls via the new app_name param in url files as per django 1.10 --- app/notes/urls.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'app/notes') diff --git a/app/notes/urls.py b/app/notes/urls.py index 2bec08f..3f46915 100644 --- a/app/notes/urls.py +++ b/app/notes/urls.py @@ -2,6 +2,8 @@ from django.conf.urls import url from . import views +app_name = "notes" + urlpatterns = [ url( r'(?P\d{4})/(?P\d{2})/(?P[-\w]+)$', -- cgit v1.2.3