{% load i18n %} {% load currency_display %}
{# Date#}
{{ transaction.date|date:"SHORT_DATE_FORMAT" }}
{{ transaction.description }}
{# Notes#} {% if transaction.notes %}
{{ transaction.notes | linebreaksbr }}
{% endif %} {% if transaction.category %}
{% spaceless %} {{ transaction.category.name }} {% endspaceless %}
{% endif %} {# Tags#} {% with transaction.tags.all as tags %} {% if tags %}
{% for tag in tags %} {{ tag.name }} {% endfor %}
{% endif %} {% endwith %}
{# Exchange Rate#} {% with exchanged=transaction.exchanged_amount %} {% if exchanged %}
{% endif %} {% endwith %}
{{ transaction.account.name }}
{# Item actions#} {# Item actions dropdown fallback for mobile#}