{% load date %} {% load i18n %}
{% if not disable_selection %} {% endif %}
{# Date#}
{{ transaction.date|custom_date:request.user }} • {{ transaction.reference_date|date:"b/Y" }}
{# Description#}
{% spaceless %} {{ transaction.description }} {% if transaction.installment_plan and transaction.installment_id %} {{ transaction.installment_id }}/{{ transaction.installment_plan.installment_total_number }} {% endif %} {% if transaction.recurring_transaction %} {% endif %} {% endspaceless %}
{# Entities #} {% with transaction.entities.all as entities %} {% if entities %}
{{ entities|join:", " }}
{% endif %} {% endwith %} {# Notes#} {% if transaction.notes %}
{{ transaction.notes | linebreaksbr }}
{% endif %} {# Category#} {% if transaction.category %}
{{ transaction.category.name }}
{% endif %} {# Tags#} {% with transaction.tags.all as tags %} {% if tags %}
{{ tags|join:", " }}
{% endif %} {% endwith %}
{# Exchange Rate#} {% with exchanged=transaction.exchanged_amount %} {% if exchanged %}
{% endif %} {% endwith %}
{% if transaction.account.group %}{{ transaction.account.group.name }} • {% endif %}{{ transaction.account.name }}
{# Item actions#}