ECM_Control/templates/partials/recipe_list.html

31 lines
1.0 KiB
HTML

<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Name</th>
<th>Target Grams</th>
<th>Timeout (s)</th>
<th>Created</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for recipe in recipes %}
<tr>
<td>{{ recipe.name }}</td>
<td>{{ recipe.grams_out }}g</td>
<td>{{ recipe.timeout_seconds }}s</td>
<td>{{ recipe.created_at }}</td>
<td>
<button class="btn btn-sm btn-danger"
hx-delete="/recipes/{{ recipe.id }}"
hx-target="#recipe-list"
hx-confirm="Are you sure you want to delete this recipe?">
Delete
</button>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>