{% load main_extras %} {% load i18n %}
{% translate "Date" %} {% translate "Name" %} {% translate "Value" %} {% translate "Trader" %} {% translate "Category" %} {% translate "Description" %}
{% for trans in transactions %}
{% for invoice in trans.invoices %} {% spaceless %} {% endspaceless %} {% endfor %} {{ trans.date|date:"Y-m-d" }} {{ trans.name }} {{ trans.value|pmvalue }} {{ trans.trader|default_if_none:"–" }} {% if trans.category %} {{ trans.category }} {% else %} – {% endif %} {{ trans.description }}
{% endfor %} {% if transactions_url %}
{% translate "View all transactions" %}
{% endif %}