From c10854355b87b32788d8e3f849291a7a877d4d11 Mon Sep 17 00:00:00 2001 From: gw3000 Date: Thu, 20 Jul 2023 11:43:34 +0200 Subject: [PATCH] Flaked --- app/costs/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/costs/views.py b/app/costs/views.py index 89c1d1c..7770963 100644 --- a/app/costs/views.py +++ b/app/costs/views.py @@ -22,7 +22,7 @@ def costs_create(request, id=None): fs.save() return redirect("costs_all") if id: - form = CostsForm(initial={"id_bird":id}) + form = CostsForm(initial={"id_bird": id}) else: form = CostsForm() context = {"form": form}