mirror of
https://github.com/Damillora/Altessimo
synced 2024-11-21 21:47:33 +00:00
11 lines
265 B
Python
11 lines
265 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path('categories',views.category_index),
|
|
path('categories/<slug:slug>',views.category_show),
|
|
path('branches',views.branch_index),
|
|
path('branches/<str:acronym>',views.branch_show),
|
|
]
|