{% load i18n %} {% for obj in object_list %} {% endfor %}
{% trans "Account" %} {% trans "Date" %} {% trans "Debit" %} {% trans "Credit" %}
{{ obj.modified|date:"SHORT_DATE_FORMAT" }} {{ obj.transaction }}
{{ obj.account }}
{% if not obj.credit %}{{ obj.amount }}{% endif %} {% if obj.credit %}{{ obj.amount }}{% endif %}