from django.urls import path from damages_api.views import Damages urlpatterns = [ path('', Damages.as_view(), name='damages_list'), ]