{% load main_extras %} {% load i18n %} {% if new_transaction_url %}
{% translate "Create transaction" %}
{% endif %}{{ "attachment"|remix }} | {% translate "Date" %} | {% translate "Name" %} | {% translate "Value" %} | {% translate "Trader" %} | {% if not category %}{% translate "Category" %} | {% endif %} {% if not account %}{% translate "Account" %} | {% endif %} {% for trans in transactions %}||||
---|---|---|---|---|---|---|---|---|---|---|
{% for invoice in trans.invoices %}{{ "attachment"|remix }}{% endfor %} | {{ trans.date|date:"Y-m-d" }} | {{ trans.name }} | {{ trans.value|pmvalue }} | {{ trans.trader|default_if_none:"" }} | {% if not category %} {% if trans.category %}{{ trans.category.icon|remix }} | {{ trans.category }} | {% else %}{% endif %} {% endif %} {% if not account %} | {{ trans.account.icon|remix }} | {{ trans.account }} | {% endif %}