Coverage for website/merchandise/urls.py: 100.00%

4 statements  

« prev     ^ index     » next       coverage.py v7.6.7, created at 2025-08-14 10:31 +0000

1from django.urls import include, path 

2 

3from . import views 

4 

5#: the name of the application 

6app_name = "merchandise" 

7 

8#: the urls provided by this package 

9urlpatterns = [ 

10 path( 

11 "association/merchandise/", 

12 include( 

13 [ 

14 path("", views.index, name="index"), 

15 ] 

16 ), 

17 ), 

18 path("association/merchandise/<int:id>/", views.product_page, name="product"), 

19]