diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-12-03 17:14:13 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-12-03 17:14:41 +0100 |
commit | 07dc587a9441033d48ec17a28d2cfac5fb6b8fbe (patch) | |
tree | aeef3e6775cadaff9b948aa142dfdac39d250859 /archaeological_context_records/urls.py | |
parent | b2edacfd52f6fcfbceb44f7bc5eaa4d0779663ab (diff) | |
download | Ishtar-07dc587a9441033d48ec17a28d2cfac5fb6b8fbe.tar.bz2 Ishtar-07dc587a9441033d48ec17a28d2cfac5fb6b8fbe.zip |
Sheet operation QA: add context record
Diffstat (limited to 'archaeological_context_records/urls.py')
-rw-r--r-- | archaeological_context_records/urls.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index c05cff87e..175c87482 100644 --- a/archaeological_context_records/urls.py +++ b/archaeological_context_records/urls.py @@ -82,4 +82,10 @@ urlpatterns = [ url(r'get-contextrecordrelationdetail/(?P<type>.+)?$', views.get_contextrecordrelationdetail, name='get-contextrecordrelationdetail'), + + url(r'^operation-qa-contextrecord/(?P<pks>[0-9]+)/$', + check_rights(['add_contextrecord', 'add_own_contextrecord'])( + views.QAOperationContextRecordView.as_view()), + name='operation-qa-contextrecord'), + ] |