kuhkal/kuhkal/templates/pages/ingredients.html
2023-01-31 23:43:08 +01:00

20 lines
590 B
HTML

{% extends "layouts/base.html" %}
{% block content %}
<a href="/ingredients/new" class="btn btn-danger">Dodaj sastojak</a>
<table class="table">
<thead>
<th>Naziv</th>
<th>Cena</th>
<th>Akcije</th>
</thead>
{% for ingredient in data["ingredients"] %}
<tr>
<td>{{ingredient.name}}</td>
<td>{{ingredient.price}} RSD</td>
<td><a href="/ingredients/edit/{{ingredient.id}}" class="btn btn-danger">Izmeni</a></td>
<td><a href="/ingredients/delete/{{ingredient.id}}" class="btn btn-dark">Obrisi</a></td>
</tr>
{% endfor %}
</table>
{% endblock content %}