removed obsolte all_tags function

This commit is contained in:
vabene1111
2020-06-02 11:07:11 +02:00
parent bc8f8b8138
commit 27297d170a

View File

@@ -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)