fix: mail template for exchange requests - td width

This commit is contained in:
saparatayev 2022-02-09 16:16:17 +05:00
parent 61ff85706c
commit 5a1c096b7f
1 changed files with 5 additions and 5 deletions

View File

@ -93,11 +93,11 @@ layout="birzha_empty"
</thead>
{% for item in exchange_request.items %}
<tr>
<td>{{ item.title }}</td>
<td>{{ item.country }}</td>
<td>{{ item.unit }}</td>
<td>{{ item.currency }}</td>
<td>{{ item.price }}</td>
<td style="width: 60%;">{{ item.title }}</td>
<td style="width: 10%;">{{ item.country }}</td>
<td style="width: 10%;">{{ item.unit }}</td>
<td style="width: 10%;">{{ item.currency }}</td>
<td style="width: 10%;">{{ item.price }}</td>
</tr>
{% endfor %}
</table>