From e7dfaffc372292d8467da8a8be872e9ac9456618 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Tue, 19 Nov 2024 11:58:15 +0100 Subject: ✨ base exhibition views MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- archaeological_finds/urls.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) (limited to 'archaeological_finds/urls.py') 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//", + check_permissions( + ["archaeological_finds.view_treatmentfile", + "archaeological_finds.view_own_treatmentfile"] + )(views.exhibition_wizard), + name="exhibition-search", + ), url( r"^treatmentfle_search/(?P.+)?$", check_permissions( @@ -597,7 +613,7 @@ urlpatterns = [ kwargs={"full": "shortcut"}, ), url( - r"^show-find-basket/(?:(?P.+)/(?P.+)?)?$", + r"^show-findbasket/(?:(?P.+)/(?P.+)?)?$", views.show_findbasket, name="show-findbasket", ), -- cgit v1.2.3