diff options
Diffstat (limited to 'view/html/recipe.html')
-rw-r--r-- | view/html/recipe.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/html/recipe.html b/view/html/recipe.html index b2fe773..b8fd130 100644 --- a/view/html/recipe.html +++ b/view/html/recipe.html @@ -12,7 +12,8 @@ <button onclick="window.location.href='/recipe/{{.Recipe.Id}}?view=recipe-edit';">edit</button> <button onclick="window.location.href='/recipe/{{.Recipe.Id}}?view=recipe-confirm-deletion';">delete</button> </p>{{ if ne .Recipe.Notes "" }} - <p class="notice" style="white-space: pre-line;">{{.Recipe.Notes}}</p>{{end}}{{ if ne .Recipe.Portions "" }} + <p class="notice" style="white-space: pre-line;">{{.Recipe.Notes}}</p>{{end}} + <p>⭐ <i>Is favorite:</i> {{if .Recipe.IsFavorite}}Yes{{else}}No{{end}}</p>{{ if ne .Recipe.Portions "" }} <p><i>Portions:</i> {{.Recipe.Portions}}</p>{{end}}{{ if ne .Recipe.Url "" }} <p><i>Original recipe:</i> <a href="{{.Recipe.Url}}">{{.Recipe.Url}}</a></p>{{end}}{{if .HasIngredients}} <p><i>Ingredient summary:</i></p> |