This commit is contained in:
2025-03-18 15:04:41 +01:00
parent fc1ef6f3ec
commit aa52f216bd
14 changed files with 107 additions and 53 deletions
+4 -4
View File
@@ -82,13 +82,13 @@
{% if errorDividend %}
<table class="table table-dark table-striped">
<tr>
{% for curr,val in errorDividend %}
<td>{{ curr }}</td>
{% for row in errorDividend %}
<td>{{ row.currency }}</td>
{% endfor %}
</tr>
<tr>
{% for curr,val in errorDividend %}
<td>{{ val }}</td>
{% for row in errorDividend %}
<td>{{ row.value }}</td>
{% endfor %}
</tr>
</table>