From 87df7fd7357f3210953038bff58477319e12b6fc Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 4 Jun 2019 17:52:17 +0200 Subject: QA person: bulk modification --- ishtar_common/urls.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'ishtar_common/urls.py') 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\d+)$', check_rights(['change_person', 'change_own_person'])( views.PersonEdit.as_view()), name='person_edit'), + + url(r'^person-qa-bulk-update/(?P[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[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.+)?$', check_rights(['add_organization'])( views.organization_search_wizard), name='organization_search'), -- cgit v1.2.3