From 0fd661ea6bae299b69e65f90966304012eb794d2 Mon Sep 17 00:00:00 2001 From: akhilbatra898 Date: Sat, 15 Jul 2017 09:44:23 +0530 Subject: Add Authentication and Basic CRUD for Repos - Map urls to the CRUD views - Add html templates for the views - Set authentication settings Change-Id: Ifcfe39a8341d44376e322d195e995fcaa1716d7d Signed-off-by: akhilbatra898 --- qtip/web/web/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'qtip/web/web/urls.py') diff --git a/qtip/web/web/urls.py b/qtip/web/web/urls.py index b0de5fe2..49aaeb98 100644 --- a/qtip/web/web/urls.py +++ b/qtip/web/web/urls.py @@ -13,9 +13,10 @@ Including another URLconf 1. Import the include() function: from django.conf.urls import url, include 2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls')) """ -from django.conf.urls import url +from django.conf.urls import include, url from django.contrib import admin urlpatterns = [ + url(r'^bench/', include('bench.urls')), url(r'^admin/', admin.site.urls), ] -- cgit 1.2.3-korg