Update tailwind to v3, various wangling

This commit is contained in:
2023-05-16 17:48:25 +01:00
parent c55577e04e
commit 57c730a2cf
14 changed files with 6821 additions and 183615 deletions

View File

@@ -4,5 +4,6 @@ from . import views
urlpatterns = [
path('list/', views.VehicleList.as_view(), name='vehicle_list'),
path('<int:pk>/', views.VehicleDetail.as_view(), name='vehicle_detail')
path('<int:pk>/', views.VehicleDetail.as_view(), name='vehicle_detail'),
path('create/', views.VehicleCreate.as_view(), name='vehicle_create'),
]