Fix after rebase

This commit is contained in:
smilerz
2021-06-06 14:25:14 -05:00
parent 26a5821cfc
commit dc2a69e42a
14 changed files with 39245 additions and 7662 deletions

View File

@ -393,7 +393,7 @@ class NutritionInformation(models.Model, PermissionModelMixin):
return 'Nutrition'
class Recipe(models.Model, PermissionModelMixin):
class Recipe(ExportModelOperationsMixin('recipe'), models.Model, PermissionModelMixin):
name = models.CharField(max_length=128)
description = models.CharField(max_length=512, blank=True, null=True)
servings = models.IntegerField(default=1)