From 18a6ad99164350af62d65efd6a1fd1aa4c419739 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 12 May 2014 21:21:04 +0200 Subject: Person and organization deletion (refs #1675) * add associated actions, wizards, forms * prevent deletion of associted items (operations, files, etc.) * give list of associated items before deletion and give access to these items --- ishtar_common/urls.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ishtar_common/urls.py') diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index ab47e82b7..61e030ef9 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -37,11 +37,15 @@ urlpatterns = patterns('', views.person_creation_wizard, name='person_creation'), url(r'person_modification/(?P.+)?$', views.person_modification_wizard, name='person_modification'), + url(r'person_deletion/(?P.+)?$', + views.person_deletion_wizard, name='person_deletion'), 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'organization_deletion/(?P.+)?$', + views.organization_deletion_wizard, name='organization_deletion'), url(r'account_management/(?P.+)?$', views.account_management_wizard, name='account_management'), ) -- cgit v1.2.3