Projet

Général

Profil

0001-lingo-add-up-to-and-including-mention-to-payment-lim.patch

Benjamin Dauvergne, 10 octobre 2020 14:20

Télécharger (1,33 ko)

Voir les différences:

Subject: [PATCH] lingo: add "up to and including" mention to payment limit
 date (#23507)

 combo/apps/lingo/templates/lingo/combo/item.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/apps/lingo/templates/lingo/combo/item.html
37 37
        <div class="issued">{% trans "Issue date:" %} <span class="timestamp">{{ item.creation_date|date:"SHORT_DATE_FORMAT" }}</span></div>
38 38
        {% if item.payment_limit_date %}
39 39
        <div class="invoice-payment-limit-date">{% trans "Payment due date:" %}
40
                <span class="timestamp">{{ item.payment_limit_date|date:"SHORT_DATE_FORMAT" }}</span></div>
40
            <span class="timestamp">{{ item.payment_limit_date|date:"SHORT_DATE_FORMAT" }} {% trans "(up to and including)" %}</span></div>
41 41
        {% endif %}
42 42
        {% if item.payment_date %}
43 43
        <div class="paid">{% trans "Payment date:" %} <span class="timestamp">{{ item.payment_date|date:"SHORT_DATE_FORMAT" }}</span></div>
44
-