diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-03-25 17:17:34 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-03-25 17:17:34 +0100 |
commit | 60843f670447b8359c633e05f0ebff3018db17bf (patch) | |
tree | 16072dbb77ab9e8d7278b9fc3d5fc1b77136f852 /ishtar_common/urls.py | |
parent | ff94189c385699852ba71a4f54f2b41352058b30 (diff) | |
download | Ishtar-60843f670447b8359c633e05f0ebff3018db17bf.tar.bz2 Ishtar-60843f670447b8359c633e05f0ebff3018db17bf.zip |
✨ Biographical notes edit form
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 7 |
1 files changed, 7 insertions, 0 deletions
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 @@ -415,6 +415,13 @@ urlpatterns += [ name="new-biographicalnote", ), url( + r"^biographicalnote-qa-edit/(?P<pks>[0-9-]+)?/$", + check_rights(["change_biographicalnote", "change_own_biographicalnote"])( + views.QABiographicalNoteForm.as_view() + ), + name="biographicalnote-qa-edit", + ), + url( r"department-by-state/(?P<state_id>.+)?$", views.department_by_state, name="department-by-state", |