c1183c22ea
buttons in table are buttons and do edit and delete properly
8 lines
215 B
Python
8 lines
215 B
Python
from django.urls import path
|
|
|
|
from common.utils.owncloud_utls import proxy_owncloud_image
|
|
from damages_api.views import Damages
|
|
|
|
urlpatterns = [
|
|
path('<int:depot_id>/', Damages.as_view(), name='damages_list'),
|
|
] |