Spaces:
Runtime error
Runtime error
File size: 391 Bytes
7c53168 |
1 2 3 4 5 6 7 8 9 |
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('establishments', views.establishment_List, name='establishment_List'),
path('resources-forward/<str:resource_name>/<str:image_id>', views.resources_forward, name='resources_forward'),
path('product-category', views.product_category, name='product_category'),
] |