{% load i18n %} {% load django_ledger %}
| {% trans 'Date Posted' %} | {% trans 'Description' %} | {% trans 'Amount' %} | {% trans 'Activity' %} | {% trans 'Entity Unit' %} | {% trans 'Map To' %} | {% trans 'Receipt' %} | {% trans 'Status' %} | {% trans 'Actions' %} |
|---|---|---|---|---|---|---|---|---|
| {% trans 'Bundle' %} {{ forloop.counter }} — {% trans 'Parent' %}: {% with parent_tx=group.list.0.parent|default:group.list.0 %} {{ parent_tx.date_posted }} · {{ parent_tx.name }} · {% currency_symbol %}{{ parent_tx.get_amount }} {% if parent_tx.get_activity_display %} · {{ parent_tx.get_activity_display }}{% endif %} {% endwith %} {% if group.list.0.is_bundled %}{% trans 'Bundled' %}{% else %} {% trans 'Not Bundled' %}{% endif %} | ||||||||
| {{ stx.date_posted }} |
{% if stx.is_children %}
{% trans 'Child' %}
{% else %}
{% trans 'Parent' %}
{% endif %}
{{ stx.name }}
{% if stx.matches_found and stx.matches_found > 0 %}
{% trans 'Matches' %}: {{ stx.matches_found }}
{% endif %}
{% if stx.is_mapped %}
{% trans 'Mapped' %}
{% endif %}
{% if stx.has_receipt %}
{% trans 'Has Receipt' %}
{% endif %}
|
{% currency_symbol %}{{ stx.get_amount }} | {% if stx.activity %}{{ stx.get_activity_display }}{% endif %} | {% if stx.entity_unit %}{{ stx.entity_unit }}{% endif %} | {{ stx.account_model|default:'' }} | {% if stx.receipt_type %} {{ stx.get_receipt_type_display }} {% endif %} | {% if stx.ready_to_import %} {% trans 'Ready' %} {% else %} {% trans 'Pending' %} {% endif %} |
{% if not stx.is_children %}
|
| {% trans 'No pending transactions.' %} | ||||||||