{% extends "main/base.html" %} {% load static %} {% block link %} {{ block.super }} {% endblock %} {% block body %}

Nummi

{% if transactions %}
Date Nom Valeur Commerçant Catégorie Description
{% for trans in transactions %}
{{ trans.date|date:"Y-m-d" }} {{ trans.name }} {{ trans.value|floatformat:"2g" }} € {{ trans.trader|default_if_none:"–" }} {% if trans.category %}{{ trans.category.tree|join:" → " }}{% else %}–{% endif %} {{ trans.description }}
{% endfor %}
{% endif %} {% if categories %} {% endif %} {% endblock %}