generated from 2martens/django-template
Added calories to recipe
This commit is contained in:
@ -82,6 +82,8 @@ class Recipe(models.Model):
|
||||
('EXP', _('Expert'))
|
||||
])
|
||||
|
||||
calories = models.PositiveIntegerField(_('Calories'),
|
||||
help_text=_('How many calories are contained in one portion?'))
|
||||
fat = models.PositiveIntegerField(_('Fat'),
|
||||
help_text=_('How much fat does one portion contain?'))
|
||||
carbohydrates = models.PositiveIntegerField(_('Carbohydrates'),
|
||||
|
||||
Reference in New Issue
Block a user