mirror of https://github.com/snachodog/mybuddy.git
Add solid food option to feeding types
I would find this helpful as I coordinate with day care
This commit is contained in:
parent
e6838a0c0f
commit
f4b9053c00
|
@ -213,6 +213,7 @@ class Feeding(models.Model):
|
||||||
('breast milk', _('Breast milk')),
|
('breast milk', _('Breast milk')),
|
||||||
('formula', _('Formula')),
|
('formula', _('Formula')),
|
||||||
('fortified breast milk', _('Fortified breast milk')),
|
('fortified breast milk', _('Fortified breast milk')),
|
||||||
|
('solid food', _('Solid food')),
|
||||||
],
|
],
|
||||||
max_length=255,
|
max_length=255,
|
||||||
verbose_name=_('Type')
|
verbose_name=_('Type')
|
||||||
|
@ -223,6 +224,8 @@ class Feeding(models.Model):
|
||||||
('left breast', _('Left breast')),
|
('left breast', _('Left breast')),
|
||||||
('right breast', _('Right breast')),
|
('right breast', _('Right breast')),
|
||||||
('both breasts', _('Both breasts')),
|
('both breasts', _('Both breasts')),
|
||||||
|
('parent fed', _('Parent fed')),
|
||||||
|
('self fed', _('Self fed')),
|
||||||
],
|
],
|
||||||
max_length=255,
|
max_length=255,
|
||||||
verbose_name=_('Method')
|
verbose_name=_('Method')
|
||||||
|
|
Loading…
Reference in New Issue