diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-03-08 13:00:40 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2023-03-08 13:00:40 +0100 |
commit | 5ec494564251e27e3f802e6c1aec3c6aa1890488 (patch) | |
tree | bbaa2a0f15ea7552672f6ec9c4a5fa03c487420f /archaeological_operations/urls.py | |
parent | f447bbebea851eb7014815351dc69e03d0aff47f (diff) | |
download | Ishtar-5ec494564251e27e3f802e6c1aec3c6aa1890488.tar.bz2 Ishtar-5ec494564251e27e3f802e6c1aec3c6aa1890488.zip |
Site: quick action for creation of virtual operation from site with many operations (refs #3935)
Diffstat (limited to 'archaeological_operations/urls.py')
-rw-r--r-- | archaeological_operations/urls.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/archaeological_operations/urls.py b/archaeological_operations/urls.py index e4965d171..cf4ab6489 100644 --- a/archaeological_operations/urls.py +++ b/archaeological_operations/urls.py @@ -356,6 +356,13 @@ urlpatterns = [ kwargs={"confirm": True}, ), url( + r"^site-qa-top-operation/(?P<pks>\d+)?/$", + check_rights(["change_operation"])( + views.site_add_top_operation + ), + name="site-qa-top-operation", + ), + url( r"generate-stats-operation/(?P<pk>.+)/", views.GenerateStatsOperation.as_view(), name="generate-stats-operation", |