7 lines
154 B
Python
7 lines
154 B
Python
from django.urls import path
|
|
|
|
from damages_api.views import Damages
|
|
|
|
urlpatterns = [
|
|
path('<int:depot_id>', Damages.as_view(), name='damages_list'),
|
|
] |