From 506e7d3c2f3b2969bf87a67d2237f6b7f5e9cc1c Mon Sep 17 00:00:00 2001 From: mahesh Date: Fri, 1 Apr 2016 11:50:04 +0530 Subject: added admin tools reverse url match for admin tools --- tbc/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tbc/urls.py') diff --git a/tbc/urls.py b/tbc/urls.py index 747a77d..6d3cc17 100644 --- a/tbc/urls.py +++ b/tbc/urls.py @@ -12,8 +12,8 @@ urlpatterns = patterns('', url(r'^profile/$', 'tbc.views.UserProfile', name='UserProfile'), url(r'^update-profile/$', 'tbc.views.UpdateProfile', name='UpdateProfile'), url(r'^forgot-password/$', 'tbc.views.ForgotPassword', name='ForgotPassword'), - url(r'^update-password/$', 'tbc.views.UpdatePassword', name='UpdatePassword'), - + url(r'^update-password/$', 'tbc.views.UpdatePassword', name='UpdatePassword'), + url(r'^admin-tools/$', 'tbc.views.admin_tools', name='admin_tools'), url(r'^submit-proposal/$', 'tbc.views.SubmitProposal', name='SubmitProposal'), url(r'^submit-aicte-proposal/$', 'tbc.views.ListAICTE', name='ListAICTE'), -- cgit