summaryrefslogtreecommitdiff
path: root/recipe/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'recipe/models.py')
-rw-r--r--recipe/models.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/recipe/models.py b/recipe/models.py
index 8463447..548536e 100644
--- a/recipe/models.py
+++ b/recipe/models.py
@@ -26,9 +26,8 @@ class Recipe(models.Model):
26 servings = fields.IntegerField(blank=True, null=True) 26 servings = fields.IntegerField(blank=True, null=True)
27 instructions = fields.TextField() 27 instructions = fields.TextField()
28 oven_temp = fields.IntegerField(blank=True, null=True) 28 oven_temp = fields.IntegerField(blank=True, null=True)
29 cook_time = fields.IntegerField(blank=True, null=True) 29 cook_time = fields.IntegerField(blank=True, null=True, help_text="In minutes")
30 prep_time = fields.IntegerField(blank=True, null=True) 30 prep_time = fields.IntegerField(blank=True, null=True, help_text="In minutes")
31
32 31
33 def __unicode__(self): 32 def __unicode__(self):
34 return self.title 33 return self.title