{% load i18n %}
| {% trans 'Category' %} | {% trans 'Income' %} | {% trans 'Expense' %} | {% trans 'Total' %} |
|---|---|---|---|
| {% if category.name %}{{ category.name }}{% else %}{% trans 'Uncategorized' %}{% endif %} |
{% for currency in category.currencies.values %}
{% if showing == 'current' and currency.income_current != 0 %}
-
{% endif %}
{% endfor %}
|
{% for currency in category.currencies.values %}
{% if showing == 'current' and currency.expense_current != 0 %}
-
{% endif %}
{% endfor %}
|
{% for currency in category.currencies.values %}
{% if showing == 'current' and currency.total_current != 0 %}
-
{% endif %}
{% endfor %}
|
| {% if tag.name %}{{ tag.name }}{% else %}{% trans 'Untagged' %}{% endif %} |
{% for currency in tag.currencies.values %}
{% if showing == 'current' and currency.income_current != 0 %}
-
{% endif %}
{% endfor %}
|
{% for currency in tag.currencies.values %}
{% if showing == 'current' and currency.expense_current != 0 %}
-
{% endif %}
{% endfor %}
|
{% for currency in tag.currencies.values %}
{% if showing == 'current' and currency.total_current != 0 %}
-
{% endif %}
{% endfor %}
|
| {% if entity.name %}{{ entity.name }}{% else %}{% trans 'No entity' %}{% endif %} |
{% for currency in entity.currencies.values %}
{% if showing == 'current' and currency.income_current != 0 %}
-
{% endif %}
{% endfor %}
|
{% for currency in entity.currencies.values %}
{% if showing == 'current' and currency.expense_current != 0 %}
-
{% endif %}
{% endfor %}
|
{% for currency in entity.currencies.values %}
{% if showing == 'current' and currency.total_current != 0 %}
-
{% endif %}
{% endfor %}
|