summaryrefslogtreecommitdiff
path: root/archaeological_operations/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2024-09-17 11:10:30 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2024-09-17 11:29:18 +0200
commit9430e8577cff4995c310f5675ea5d2a619554ccf (patch)
treee809cc61d746115afa703042591e8f7cc696bfdb /archaeological_operations/urls.py
parent0e22d62ec2cacfe501bdb7a4f3afde9081366d55 (diff)
downloadIshtar-9430e8577cff4995c310f5675ea5d2a619554ccf.tar.bz2
Ishtar-9430e8577cff4995c310f5675ea5d2a619554ccf.zip
✨ Operations: remove form from the wizard to put in a specific form
Diffstat (limited to 'archaeological_operations/urls.py')
-rw-r--r--archaeological_operations/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/archaeological_operations/urls.py b/archaeological_operations/urls.py
index 05c03bc51..b87d6c5fd 100644
--- a/archaeological_operations/urls.py
+++ b/archaeological_operations/urls.py
@@ -305,6 +305,13 @@ urlpatterns = [
name="operation-parcels-modify",
),
url(
+ r"^operation-relations-modify/(?P<pk>.+)/$",
+ check_rights(["change_operation", "change_own_operation"])(
+ views.operation_modify_relations
+ ),
+ name="operation-relation-modify",
+ ),
+ url(
r"^operation-qa-bulk-update/(?P<pks>[0-9-]+)?/$",
check_rights(["change_operation", "change_own_operation"])(
views.QAOperationForm.as_view()