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.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py
index b8ccb5172..1c0ddc495 100644
--- a/ishtar_common/urls.py
+++ b/ishtar_common/urls.py
@@ -63,6 +63,8 @@ urlpatterns = [
url(r'person_deletion/(?P<step>.+)?$',
check_rights(['change_person', 'change_own_person'])(
views.person_deletion_wizard), name='person_deletion'),
+ url(r'person_delete/(?P<pk>.+)/$', views.person_delete,
+ name='person_delete'),
url(r'^person-edit/$',
check_rights(['add_person'])(
views.PersonCreate.as_view()), name='person_create'),