summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
diff options
context:
space:
mode:
authorDhiru <dhirusingh11@gmail.com>2015-03-15 02:36:20 +0530
committerDhiru <dhirusingh11@gmail.com>2015-03-15 02:36:20 +0530
commitad36b7572e213b7697b0b41ee9745e7aa2eb2c39 (patch)
treef01e220025ba659e718004ae191fc6675dc53839 /gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
parent15c7b03111eb506133f4fd57aa94088b3b1fc86b (diff)
downloadgnowsys-ad36b7572e213b7697b0b41ee9745e7aa2eb2c39.tar.gz
bug fixed on url redirection and horizontal scrolling
Diffstat (limited to 'gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py')
-rw-r--r--gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
index 236dc73..d7ad646 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
@@ -2,7 +2,7 @@ from django.conf.urls import patterns, url
from django.views.generic.base import RedirectView
urlpatterns = patterns('gnowsys_ndf.ndf.views.adminDesignerDashboard',
- url(r'^$', RedirectView.as_view(url='GSystemType'), name='adminDesigner'),
+ url(r'^$', 'adminDesignerDashboardClass', name='adminDesigner'),
url(r'^(?P<class_name>[^/]+)$', 'adminDesignerDashboardClass', name='adminDesignerDashboardClass'),
url(r'(?P<class_name>[^/]+)/create/', 'adminDesignerDashboardClassCreate', name='adminDesignerDashboardClassCreate'),
url(r'(?P<class_name>[^/]+)/edit/(?P<node_id>[\w-]+)$', 'adminDesignerDashboardClassCreate', name='adminDesignerDashboardClassEdit'),