academon/api/urls.py

14 lines
626 B
Python
Raw Normal View History

2022-09-16 12:51:56 +00:00
from django.urls import path, include
2022-09-18 16:45:35 +00:00
from .views.urls import VesselsDataTableURLView, VesselsDeleteURLView, VesselsEditURLView, StaticsURLView
from .views.vessels import VesselsLocationView
2022-09-16 12:51:56 +00:00
urlpatterns = [
path("urls/datatable/vessels/", VesselsDataTableURLView.as_view(), name=""),
2022-09-18 16:45:35 +00:00
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=""),
2022-09-16 12:51:56 +00:00
]