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 | 1ec422545704e35f9a1fe2eaa5f974cc82d5179f (patch) | |
tree | aeef3e6775cadaff9b948aa142dfdac39d250859 /archaeological_context_records/urls.py | |
parent | c79ec86652742f9e98df25c3ef187d0022aa5a5b (diff) | |
download | Ishtar-1ec422545704e35f9a1fe2eaa5f974cc82d5179f.tar.bz2 Ishtar-1ec422545704e35f9a1fe2eaa5f974cc82d5179f.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'), + ] |