{% extends "lingo/invoicing/manager_regie_detail.html" %} {% load gadjo i18n %} {% block page-title-extra-label %}{% trans "Collections" %} | {{ block.super }}{% endblock %} {% block breadcrumb %} {{ block.super }} {% trans "Collections" %} {% endblock %} {% block appbar %}

{% trans "Collections" %}

{% endblock %} {% block content %} {% if object_list %}
{% for collection in object_list %} {% endfor %}
{% trans "Number" %} {% trans "Number of invoices" %} {% trans "End date" %} {% trans "Minimal threshold" %}
{{ collection }} {{ collection.count|default:0 }} ({% blocktrans with amount=collection.paid_amount|default:0|add:collection.remaining_amount|floatformat:"2" %}{{ amount }}€{% endblocktrans %}) {{ collection.date_end|date:"d/m/Y" }} {% blocktrans with amount=collection.minimum_threshold|floatformat:"2" %}{{ amount }}€{% endblocktrans %}
{% include "gadjo/pagination.html" %}
{% else %}
{% trans "This site doesn't have any collection yet." %}
{% endif %} {% endblock %} {% block sidebar %} {% endblock %}