From 537dc18f4192052b28224f4287815553df1f7479 Mon Sep 17 00:00:00 2001 From: Drew Larson Date: Fri, 1 Apr 2016 10:43:46 -0600 Subject: [PATCH] Core URLs at the end to hoover up everything. --- bikeshop_project/bikeshop/urls.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bikeshop_project/bikeshop/urls.py b/bikeshop_project/bikeshop/urls.py index 40df174..08781c7 100644 --- a/bikeshop_project/bikeshop/urls.py +++ b/bikeshop_project/bikeshop/urls.py @@ -15,9 +15,11 @@ Including another URLconf """ from django.conf.urls import include, url from django.contrib import admin +from registration import urls as auth_urls from core import urls as core_urls urlpatterns = [ - url('^', include(core_urls)), + url('^', include(auth_urls)), url(r'^admin/', admin.site.urls), + url('^', include(core_urls)), ]