From ed871697d607a1a00b36be0c787b56e5f34a1e17 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 25 Mar 2024 17:17:34 +0100 Subject: ✨ Biographical notes edit form MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ishtar_common/urls.py | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ishtar_common/urls.py') diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 955563875..b7a43f82a 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -414,6 +414,13 @@ urlpatterns += [ views.new_biographical_note, name="new-biographicalnote", ), + url( + r"^biographicalnote-qa-edit/(?P[0-9-]+)?/$", + check_rights(["change_biographicalnote", "change_own_biographicalnote"])( + views.QABiographicalNoteForm.as_view() + ), + name="biographicalnote-qa-edit", + ), url( r"department-by-state/(?P.+)?$", views.department_by_state, -- cgit v1.2.3