diff options
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 957b1bfb3..26dfcdc07 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -62,6 +62,16 @@ urlpatterns = [ url(r'^person-edit/(?P<pk>\d+)$', check_rights(['change_person', 'change_own_person'])( views.PersonEdit.as_view()), name='person_edit'), + + url(r'^person-qa-bulk-update/(?P<pks>[0-9-]+)?/$', + check_rights(['change_person', 'change_own_person'])( + views.QAPersonForm.as_view()), + name='person-qa-bulk-update'), + url(r'^person-qa-bulk-update/(?P<pks>[0-9-]+)?/confirm/$', + check_rights(['change_person', 'change_own_person'])( + views.QAPersonForm.as_view()), + name='person-qa-bulk-update-confirm', kwargs={"confirm": True}), + url(r'organization_search/(?P<step>.+)?$', check_rights(['add_organization'])( views.organization_search_wizard), name='organization_search'), |