from django.urls import path from . import views urlpatterns = [ path('categories',views.category_index), path('categories/',views.category_show), path('branches',views.branch_index), path('branches/',views.branch_show), ]