From a066fc336379baaf514bb1d5353f67d5a69f8a82 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 17 Dec 2013 13:40:51 +0100 Subject: Organizations management (refs #1568) * select, create, modify forms * create, modify, wizard * sheet templates * associated actions, urls --- ishtar_common/urls.py | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ishtar_common/urls.py') diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 35354409e..565db57d5 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -35,6 +35,11 @@ urlpatterns = patterns('', views.person_creation_wizard, name='person_creation'), url(r'person_modification/(?P.+)?$', views.person_modification_wizard, name='person_modification'), + url(r'organization_creation/(?P.+)?$', + views.organization_creation_wizard, name='organization_creation'), + url(r'organization_modification/(?P.+)?$', + views.organization_modification_wizard, + name='organization_modification'), url(r'account_management/(?P.+)?$', views.account_management_wizard, name='account_management'), ) @@ -70,6 +75,10 @@ urlpatterns += patterns('ishtar_common.views', name='autocomplete-author'), url(r'new-organization/(?P.+)?/$', 'new_organization', name='new-organization'), + url(r'get-organization/(?P.+)?$', 'get_organization', + name='get-organization'), + url(r'show-organization/(?P.+)?/(?P.+)?$', + 'show_organization', name='show-organization'), url(r'autocomplete-organization/([0-9_]+)?$', 'autocomplete_organization', name='autocomplete-organization'), url(r'(?P' + actions + r')/$', 'action', -- cgit v1.2.3