Add solid food option to feeding types

I would find this helpful as I coordinate with day care
This commit is contained in:
0x4161726f6e 2021-04-04 08:19:36 -07:00 committed by Christopher Charbonneau Wells
parent e6838a0c0f
commit f4b9053c00
1 changed files with 3 additions and 0 deletions

View File

@ -213,6 +213,7 @@ class Feeding(models.Model):
('breast milk', _('Breast milk')),
('formula', _('Formula')),
('fortified breast milk', _('Fortified breast milk')),
('solid food', _('Solid food')),
],
max_length=255,
verbose_name=_('Type')
@ -223,6 +224,8 @@ class Feeding(models.Model):
('left breast', _('Left breast')),
('right breast', _('Right breast')),
('both breasts', _('Both breasts')),
('parent fed', _('Parent fed')),
('self fed', _('Self fed')),
],
max_length=255,
verbose_name=_('Method')