{% extends "djangobmf/module_detail.html" %} {% load i18n %} {% block title %}{% trans "Transaction" %}: {{ object.text }}{% endblock %} {% block base_content %}
{% trans "Date" %} | {% trans "Account" %} | {% trans "Debit" %} | {% trans "Credit" %} | |
---|---|---|---|---|
{% if obj.draft %} {% else %} {% endif %} {{ obj.modified|date:"SHORT_DATE_FORMAT" }} | {{ obj.account }} | {% if not obj.credit %}{{ obj.amount }}{% endif %} | {% if obj.credit %}{{ obj.amount }}{% endif %} |