Altessimo/categories/urls.py

11 lines
265 B
Python
Raw Permalink Normal View History

2020-12-15 21:32:20 +00:00
from django.urls import path
from . import views
urlpatterns = [
2020-12-16 17:36:29 +00:00
path('categories',views.category_index),
path('categories/<slug:slug>',views.category_show),
path('branches',views.branch_index),
path('branches/<str:acronym>',views.branch_show),
2020-12-15 21:32:20 +00:00
]