{% extends "base.html" %} {% load i18n %} {% load bootstrap3 %} {% load dv_filters %} {% block head_title %}{% blocktrans with season=season.desc orga=organization %}{{season}}: factures pour {{orga}}{% endblocktrans %}{% endblock %} {% block content %}

{% blocktrans with orga=organization %}{{orga}}: Factures{% endblocktrans %}

{% for invoice in invoices %} {% if forloop.first %} {% endif %} {% if forloop.last %}
{% trans "État" %} {% trans "Référence" %} {% trans "Titre" %} {% trans "Montant" %}
{{ invoice.get_status_display }} {{ invoice.ref }} {{ invoice.title }} {{ invoice.sum_cost }} {% if user_can_edit_locked_invoice or not invoice.is_locked %} {% endif %}
{% endif %} {% endfor %} {% if user|can:'challenge_invoice_cru' %}
{% trans "Nouvelle facture" %}
{% endif %} {% endblock %}