{% load i18n %} {% block cell-content %} {% if title %}
{% trans "Number" %} | {% trans "Label" %} | {% trans "Issue date" %} | {% trans "Payment limit date" %} | {% trans "Amount" %} | |
---|---|---|---|---|---|
{{ item.display_id }} | {{ item.subject }} | {{ item.creation_date|date:"SHORT_DATE_FORMAT" }} | {{ item.payment_limit_date|date:"SHORT_DATE_FORMAT" }} | {% blocktrans with amount=item.total_amount|floatformat:"2" %} {{ amount }}€ {% endblocktrans %} | {% if item.regie.is_remote %}
{% trans "View" %}
{% if item.online_payment and item.amount >= item.regie.payment_min_amount %}{% trans "and pay" %}{% endif %}
{% if item.has_pdf %}
{% trans "Download" %} {% endif %} |
{% endif %}