summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
diff options
context:
space:
mode:
authorAvadoot Nachankar <avadoot298@gmail.com>2014-03-31 18:26:27 +0530
committerAvadoot Nachankar <avadoot298@gmail.com>2014-03-31 18:26:27 +0530
commitd1d32c76dadf972947367c8b70fb670f45db9449 (patch)
tree5af91dea7ed7f3402f7d3f5b3ab0e7ce4620f584 /gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
parenta7ff18ac9e04d5ae3bd1a5a3357096e3b7fdea1a (diff)
downloadgnowsys-d1d32c76dadf972947367c8b70fb670f45db9449.tar.gz
Intermediate: Edit plus for editing TYPES.
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, 4 insertions, 4 deletions
diff --git a/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py b/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
index 39e5953..236dc73 100644
--- a/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
+++ b/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
@@ -2,8 +2,8 @@ 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'^(?P<class_name>[^/]+)$', 'adminDesignerDashboardClass', name='adminDesignerDashboardClass'),
- url(r'(?P<class_name>[^/]+)/create/', 'adminDesignerDashboardClassCreate', name='adminDesignerDashboardClassCreate'),
-
+ url(r'^$', RedirectView.as_view(url='GSystemType'), 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'),
)