summaryrefslogtreecommitdiff
path: root/archaeological_finds/urls.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2024-11-19 11:58:15 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-02-19 14:45:56 +0100
commite7dfaffc372292d8467da8a8be872e9ac9456618 (patch)
tree0cac7d0f5fcaf03d07062fc35a18a43b0aaa7cae /archaeological_finds/urls.py
parent225f4356ca145d7f634aa8050d936de2dbd1cfec (diff)
downloadIshtar-e7dfaffc372292d8467da8a8be872e9ac9456618.tar.bz2
Ishtar-e7dfaffc372292d8467da8a8be872e9ac9456618.zip
✨ base exhibition views
Diffstat (limited to 'archaeological_finds/urls.py')
-rw-r--r--archaeological_finds/urls.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/archaeological_finds/urls.py b/archaeological_finds/urls.py
index ad4082f8e..2af33537f 100644
--- a/archaeological_finds/urls.py
+++ b/archaeological_finds/urls.py
@@ -439,6 +439,22 @@ urlpatterns = [
views.treatmentfile_administrativeacttreatmentfile_delete,
name="delete-administrativeact-treatmentfile",
),
+ path(
+ "exhibition/",
+ check_permissions(
+ ["archaeological_finds.view_treatmentfile",
+ "archaeological_finds.view_own_treatmentfile"]
+ )(views.exhibition_wizard),
+ name="exhibition-search",
+ ),
+ path(
+ "exhibition/<step>/",
+ check_permissions(
+ ["archaeological_finds.view_treatmentfile",
+ "archaeological_finds.view_own_treatmentfile"]
+ )(views.exhibition_wizard),
+ name="exhibition-search",
+ ),
url(
r"^treatmentfle_search/(?P<step>.+)?$",
check_permissions(
@@ -597,7 +613,7 @@ urlpatterns = [
kwargs={"full": "shortcut"},
),
url(
- r"^show-find-basket/(?:(?P<pk>.+)/(?P<type>.+)?)?$",
+ r"^show-findbasket/(?:(?P<pk>.+)/(?P<type>.+)?)?$",
views.show_findbasket,
name="show-findbasket",
),