added description to search and recipe view

This commit is contained in:
smilerz
2021-03-06 16:32:59 -06:00
parent 11240dcf48
commit d3e6b34a63
6 changed files with 30 additions and 24 deletions

View File

@ -47,7 +47,7 @@ class RecipeTable(tables.Table):
model = Recipe
template_name = 'recipes_table.html'
fields = (
'id', 'name', 'all_tags', 'image', 'instructions',
'id', 'name', 'all_tags', 'description', 'image', 'instructions',
'working_time', 'waiting_time', 'internal'
)