summaryrefslogtreecommitdiff
path: root/gnowsys-ndf/gnowsys_ndf/ndf/urls/adminDesignerDashboard.py
blob: d7ad646e804c090f41cc1ef2ef546596e14f2d49 (plain)
1
2
3
4
5
6
7
8
9
from django.conf.urls import patterns, url
from django.views.generic.base import RedirectView

urlpatterns = patterns('gnowsys_ndf.ndf.views.adminDesignerDashboard',
                       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'),
)