diff --git a/cookbook/models.py b/cookbook/models.py index 1a1aab79e..df41295b0 100644 --- a/cookbook/models.py +++ b/cookbook/models.py @@ -142,10 +142,6 @@ class Recipe(models.Model): def __str__(self): return self.name - @property - def all_tags(self): - return ' '.join([(str(x)) for x in self.keywords.all()]) - class Unit(models.Model): name = models.CharField(unique=True, max_length=128)