ingredient styling

This commit is contained in:
vabene1111 2019-12-02 00:01:59 +01:00
parent bd30606cff
commit 07904d31a7

View File

@ -37,12 +37,11 @@
<div class="card">
<div class="card-body">
<h5 class="card-title">{% trans 'Ingredients' %}</h5>
<table>
<table class="">
{% for i in ingredients %}
<tr>
<td>{{ i.amount.normalize }} </td>
<td>{{ i.unit }} </td>
<td>{{ i.name }}</td>
<td>{{ i.amount.normalize }} {{ i.unit }}</td>
<td style="padding-left: 8px">{{ i.name }}</td>
</tr>
{% endfor %}
</table>