kuhkal/kuhkal/templates/includes/calculate_results.html
2023-07-13 17:00:26 +02:00

19 lines
387 B
HTML

<div>
<table class="table">
<thead>
<th>Sastojak</th>
<th>Kolicina</th>
<th>Cena</th>
</thead>
{% for ingredient in data['ingredients'] %}
<tr>
<td>{{ingredient['name']}}</td>
<td>{{ingredient['calculated_ammount']}}</td>
<td>{{ingredient['calculated_price']}} RSD</td>
</tr>
{% endfor %}
</table>
<p>Cena: <b> {data['price']}}</b> RSD</p>
</div>