view local recipes

This commit is contained in:
vabene1111
2019-11-14 08:57:50 +01:00
parent 76bf49eaad
commit 16cf81ab4a
4 changed files with 11 additions and 3 deletions

View File

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