From 712779b03524a99c00049e750c286bed3ef1d1af Mon Sep 17 00:00:00 2001 From: Philip Lawrence Date: Tue, 16 Apr 2024 21:14:11 -0700 Subject: [PATCH] Remove duplicate amount field Refs #800 --- core/forms.py | 1 - 1 file changed, 1 deletion(-) diff --git a/core/forms.py b/core/forms.py index e1507476..8ae6ecbb 100644 --- a/core/forms.py +++ b/core/forms.py @@ -166,7 +166,6 @@ class BMIForm(CoreModelForm, TaggableModelForm): class BottleFeedingForm(CoreModelForm, TaggableModelForm): fieldsets = [ {"fields": ["child", "type", "start", "amount"], "layout": "required"}, - {"fields": ["amount"]}, {"fields": ["notes", "tags"], "layout": "advanced"}, ]