Improved history page and spacing between values and currency suffix + minor improvements to css

This commit is contained in:
Julian Müller (ChaoticByte) 2023-04-15 10:01:56 +02:00
parent 8702233934
commit ac59aa0baa
6 changed files with 30 additions and 25 deletions

View file

@ -11,13 +11,13 @@
{% if history %}
<table class="history">
<tr>
<th>{% translate "last 30 actions" %}</th>
<th></th>
<th colspan="3">{% translate "last 30 actions" %}</th>
</tr>
{% for h in history %}
<tr>
<td>{{ h.0 }}</td>
<td class="historydate">{{ h.1 }}</td>
<td class="text-align-right">{{ h.0 }} {{ currency_suffix }}</td>
<td>{{ h.1 }}</td>
<td>{{ h.2 }}</td>
</tr>
{% endfor %}
</table>