summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
diff options
context:
space:
mode:
authorAvadoot Nachankar <avadoot298@gmail.com>2014-03-01 12:37:12 +0530
committerAvadoot Nachankar <avadoot298@gmail.com>2014-03-01 12:37:12 +0530
commit9e012309d21de3d57bd558de339805ea08df6768 (patch)
treed661a28a7b6b1553dab942647eaa4cfdd40bace0 /gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
parent920c01c2b306fa5cd8f16a079957120af83479af (diff)
downloadgnowsys-9e012309d21de3d57bd558de339805ea08df6768.tar.gz
Removed unecessary code from respective file(s).
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
index 83f2c65..39e5953 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
@@ -1,11 +1,9 @@
from django.conf.urls import patterns, url
from django.views.generic.base import RedirectView
-from gnowsys_ndf.ndf.views import *
-
-urlpatterns = patterns('',
+urlpatterns = patterns('gnowsys_ndf.ndf.views.adminDesignerDashboard',
url(r'^$', RedirectView.as_view(url='GSystemType'), name='adminDesigner'),
- url(r'^(?P<class_name>[^/]+)$','gnowsys_ndf.ndf.views.adminDesignerDashboard.adminDesignerDashboardClass',name='adminDesignerDashboardClass' ),
- url(r'(?P<class_name>[^/]+)/create/','gnowsys_ndf.ndf.views.adminDesignerDashboard.adminDesignerDashboardClassCreate',name='adminDesignerDashboardClassCreate' ),
+ url(r'^(?P<class_name>[^/]+)$', 'adminDesignerDashboardClass', name='adminDesignerDashboardClass'),
+ url(r'(?P<class_name>[^/]+)/create/', 'adminDesignerDashboardClassCreate', name='adminDesignerDashboardClassCreate'),
)