summaryrefslogtreecommitdiff
path: root/ishtar_common/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2019-06-04 17:52:17 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2019-06-04 17:52:17 +0200
commit87df7fd7357f3210953038bff58477319e12b6fc (patch)
treecf5da383b3ed46de875ee25ec625b0218c2da35a /ishtar_common/urls.py
parentdaee77bd657f0e72767d64dd92f36008e1c47676 (diff)
downloadIshtar-87df7fd7357f3210953038bff58477319e12b6fc.tar.bz2
Ishtar-87df7fd7357f3210953038bff58477319e12b6fc.zip
QA person: bulk modification
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r--ishtar_common/urls.py10
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'),