{% extends "djangobmf/module_index.html" %} {% load i18n %} {% block base_content %} {% 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 %}
{% endblock %}