overview + center

This commit is contained in:
vabene1111
2018-02-01 00:20:47 +01:00
parent c382e9df24
commit 9bdc303f0e
9 changed files with 267 additions and 70 deletions

View File

@ -34,3 +34,7 @@ class Recipe(models.Model):
def __str__(self):
return self.name
@property
def all_tags(self):
return ', '.join([x.name for x in self.keywords.all()])