diff options
Diffstat (limited to 'archaeological_finds/urls.py')
-rw-r--r-- | archaeological_finds/urls.py | 18 |
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", ), |