diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-10 20:49:13 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-09-10 20:49:13 +0200 |
commit | 8f18e7aa3ef8750faaf8c4cd136827555fdf66e4 (patch) | |
tree | 45f1d910b67a30e44015735581ec9cdc6db51cdf /archaeological_context_records/urls.py | |
parent | 3d630a998043a9a6a9d61d42f3394b121f045431 (diff) | |
download | Ishtar-8f18e7aa3ef8750faaf8c4cd136827555fdf66e4.tar.bz2 Ishtar-8f18e7aa3ef8750faaf8c4cd136827555fdf66e4.zip |
QA: lock/unlock (sites, operations, context records, finds, containers, warehouses)
Diffstat (limited to 'archaeological_context_records/urls.py')
-rw-r--r-- | archaeological_context_records/urls.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index 0b46f4de8..ccab8cacb 100644 --- a/archaeological_context_records/urls.py +++ b/archaeological_context_records/urls.py @@ -87,4 +87,8 @@ urlpatterns = [ views.QAOperationContextRecordView.as_view()), name='operation-qa-contextrecord'), + url(r'^contextrecord-qa-lock/(?P<pks>[0-9-]+)?/$', + views.QAContextRecordLockView.as_view(), name='contextrecord-qa-lock', + kwargs={"model": models.ContextRecord}), + ] |