summaryrefslogtreecommitdiff
path: root/ishtar_common/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r--ishtar_common/urls.py4
1 files changed, 4 insertions, 0 deletions
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<step>.+)?$',
views.person_modification_wizard, name='person_modification'),
+ url(r'person_deletion/(?P<step>.+)?$',
+ views.person_deletion_wizard, name='person_deletion'),
url(r'organization_creation/(?P<step>.+)?$',
views.organization_creation_wizard, name='organization_creation'),
url(r'organization_modification/(?P<step>.+)?$',
views.organization_modification_wizard,
name='organization_modification'),
+ url(r'organization_deletion/(?P<step>.+)?$',
+ views.organization_deletion_wizard, name='organization_deletion'),
url(r'account_management/(?P<step>.+)?$',
views.account_management_wizard, name='account_management'),
)