academon/api/urls.py

14 lines
626 B
Python

from django.urls import path, include
from .views.urls import VesselsDataTableURLView, VesselsDeleteURLView, VesselsEditURLView, StaticsURLView
from .views.vessels import VesselsLocationView
urlpatterns = [
path("urls/datatable/vessels/", VesselsDataTableURLView.as_view(), name=""),
path("urls/datatable/vessels/edit/<str:id>/", VesselsDataTableURLView.as_view(), name=""),
path("urls/datatable/vessels/delete/<str:id>/", VesselsDataTableURLView.as_view(), name=""),
path("urls/static/", StaticsURLView.as_view(), name=""),
path("vessels/location/<str:id>/", VesselsLocationView.as_view(), name=""),
]