refactor: Remove non-bulma rescue org view

This commit is contained in:
2025-06-17 07:00:00 +02:00
parent 1920d72821
commit 60ae971f14
2 changed files with 2 additions and 3 deletions

View File

@@ -85,7 +85,7 @@
</h4>
<p class="bd-footer-link">
<a class="nav-link " href="{% url "bulma-rescue-organizations" %}">
<a class="nav-link " href="{% url "rescue-organizations" %}">
{% translate 'Tierheime in der Nähe' %}
</a>
<br/>

View File

@@ -39,8 +39,7 @@ urlpatterns = [
path("vermittlung/<int:adoption_notice_id>/add-animal", views.adoption_notice_add_animal,
name="adoption-notice-add-animal"),
path("tierschutzorganisationen/", views.list_rescue_organizations, name="rescue-organizations"),
path("bulma/tierschutzorganisationen/", views.bulma_list_rescue_organizations, name="bulma-rescue-organizations"),
path("tierschutzorganisationen/", views.bulma_list_rescue_organizations, name="rescue-organizations"),
path("organisation/<int:rescue_organization_id>/", views.detail_view_rescue_organization,
name="rescue-organization-detail"),
path("bulma/organisation/<int:rescue_organization_id>/", views.bulma_detail_view_rescue_organization,