{% extends 'cashbook/base.html' %} {% load i18n static %} {% block viewmode_title %}{% trans 'Account activities' %}{% endblock %} {% block content %}
{# {% if perms.cashbook.add_accountactivity %}#}
{% if error %}
{{ error }}
{% endif %}
{# {% endif %}#}
{% for activity in object_list %} {% endfor %}
{% trans 'Date' %} {% trans 'E/A' %} {% trans 'Comment' %} {% trans 'Balance' %}
{% ifchanged activity.timestamp|date %} {{ activity.timestamp |date }}{% endifchanged %} {{ activity.amount }} {{ activity.comment | default_if_none:"" }} {{ activity.balance }}
{% endblock %}