Skip to content

Commit

Permalink
Add solid food option to feeding types
Browse files Browse the repository at this point in the history
I would find this helpful as I coordinate with day care
  • Loading branch information
0x4161726f6e authored and cdubz committed Apr 15, 2021
1 parent e6838a0 commit f4b9053
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand All @@ -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')
Expand Down

0 comments on commit f4b9053

Please sign in to comment.