This commit is contained in:
2025-07-15 20:57:15 +03:00
parent f6c78a20a3
commit 0ffd79cee9
51 changed files with 1227 additions and 653 deletions
+7
View File
@@ -0,0 +1,7 @@
from django.urls import path
from damages_api.views import Damages
urlpatterns = [
path('<int:depot_id>', Damages.as_view(), name='damages_list'),
]