from django.urls import path from . import views app_name = 'claims' urlpatterns = [ path('', views.home, name='home'), path('suche/', views.search, name='search'), path('kategorie//', views.category_detail, name='category_detail'), path('behauptung//', views.claim_detail, name='claim_detail'), ]