{% extends "django_pettycash/dpc_base.html" %} {% load url from future %} {% load i18n %} {% block content %}

{% trans "Monthly balance list" %}

{% if perms.django_pettycash.add_monthlybalance %} {% trans "Add" %} {% endif %}
{% if object_list %}
{% for mb in object_list %} {% endfor %}
{% trans "Source" %} {% trans "Date" %} {% trans "Beginning balance" %} {% trans "Final balance" %}
{{mb.source}} {{mb.date}} {{mb.start}} € {{mb.end}} € {% if perms.django_pettycash.add_monthlybalance or perms.django_pettycash.change_monthlybalance or perms.django_pettycash.delete_monthlybalance %} {% trans "View" %} {% endif %} {% if perms.django_pettycash.change_monthlybalance %} {% trans "Edit" %} {% endif %} {% if perms.django_pettycash.delete_monthlybalance %} {% trans "Delete" %} {% endif %}
{% else %}

{% trans "No monthly balances" %}

{% endif %} {% endblock content %}