diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2026-04-24 16:34:07 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2026-04-24 16:53:20 +0200 |
| commit | 14eb8da0f0db27c03fc23628be88b85e0e1169ae (patch) | |
| tree | 20a98627614a3d7c92302aa4d1320639563086c6 /ishtar_common/urls.py | |
| parent | fb8f2ab9b8fc95bfa63b5d749a1c79ce8a55756c (diff) | |
| download | Ishtar-14eb8da0f0db27c03fc23628be88b85e0e1169ae.tar.bz2 Ishtar-14eb8da0f0db27c03fc23628be88b85e0e1169ae.zip | |
✨ sheet: display editors - add editors link on person sheet (refs #6718)
Diffstat (limited to 'ishtar_common/urls.py')
| -rw-r--r-- | ishtar_common/urls.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 66fe1ae36..7f688074e 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -506,6 +506,11 @@ urlpatterns += [ views.show_person, name="show-person", ), + re_path( + r"show-author(?:/(?P<pk>.+))?/(?P<type>.+)?$", + views.show_author, + name="show-author", + ), path( "show-ishtaruser/", check_permissions(["ishtaradmin"])(views.show_ishtaruser), |
