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

@@ -12,3 +12,9 @@ class VehicleList(generic.ListView):
class VehicleDetail(generic.DetailView):
template_name = 'vehicle_detail.html'
model = Vehicle
class VehicleCreate(generic.CreateView):
template_name = 'vehicle_form.html'
model = Vehicle
fields = "__all__"