From 872bc0f6b00c44a5978a826c063a3f1e50dd4b15 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 13 Nov 2025 17:18:53 +0100 Subject: ✨ datings refactoring: add view/form MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_context_records/urls.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'archaeological_context_records/urls.py') diff --git a/archaeological_context_records/urls.py b/archaeological_context_records/urls.py index bb06e9945..ec529deeb 100644 --- a/archaeological_context_records/urls.py +++ b/archaeological_context_records/urls.py @@ -161,6 +161,14 @@ urlpatterns = [ ), name="context-record-relation-modify", ), + re_path( + r"^context-record-dating/(?P.+)/$", + check_permissions(["archaeological_context_records.change_contextrecord", + "archaeological_context_records.change_own_contextrecord"])( + views.context_record_dating_add + ), + name="context-record-dating-add", + ), re_path( r"^operation-qa-contextrecord/(?P[0-9]+)/$", check_permissions(["archaeological_context_records.add_contextrecord"])( -- cgit v1.2.3