summaryrefslogtreecommitdiff
path: root/ishtar_common/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r--ishtar_common/urls.py7
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",