Fix snapshot list on account page

This commit is contained in:
Edgar P. Burkhart 2023-04-18 14:37:51 +02:00
parent ab3f7f4e40
commit 74c95c7d16
Signed by: edpibu
GPG Key ID: 9833D3C5A25BD227
1 changed files with 3 additions and 3 deletions

View File

@ -59,10 +59,10 @@
<td> <td>
<a href="{% url "account" pk=snap.account.id %}">{{ snap.account }}</a> <a href="{% url "account" pk=snap.account.id %}">{{ snap.account }}</a>
</td> </td>
<td class="value">{{ snap.value|value }}</td>
<td class="value">{{ snap.diff|pmvalue }}</td>
<td class="value">{{ snap.sum|pmvalue }}</td>
{% endif %} {% endif %}
<td class="value">{{ snap.value|value }}</td>
<td class="value">{{ snap.diff|pmvalue }}</td>
<td class="value">{{ snap.sum|pmvalue }}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>