Files
CS361-Portfolio-Project/templates/recipe.html
2022-04-28 22:15:45 -07:00

31 lines
622 B
HTML

{% extends "base.html" %}
{% block title %}{{content["name"]}}{% endblock %}
{% block html_head %}
{% endblock %}
{% block content %}
<h1>{{content["name"]}} Recipe</h1>
<p>Number of loaves: {{content['quantity']}}</p>
<table>
<tr>
<th>Ingredient</th>
<th>Grams</th>
</tr>
{% for item in content['ingredients'] %}
<tr>
<td>{{ item.title() }}</td>
<td>{{ content['ingredients'][item] }}</td>
</tr>
{% endfor %}
</table>
<input type="button" onclick="location.href='/recipes/{{_id}}/delete'" value=Delete />
{% endblock %}