Projet

Général

Profil

0001-lingo-clarify-message-on-paid-invoice-57952.patch

Thomas Noël, 18 octobre 2021 17:44

Télécharger (1,21 ko)

Voir les différences:

Subject: [PATCH] lingo: clarify message on paid invoice (#57952)

 combo/apps/lingo/templates/lingo/combo/item.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/apps/lingo/templates/lingo/combo/item.html
41 41
            <span class="timestamp">{{ item.payment_limit_date|date:"SHORT_DATE_FORMAT" }} {% trans "(up to and including)" %}</span></div>
42 42
        {% endif %}
43 43
        {% if item.payment_date %}
44
        <div class="paid">{% trans "Payment date:" %} <span class="timestamp">{{ item.payment_date|date:"SHORT_DATE_FORMAT" }}</span></div>
44
        <div class="paid paid-info">{% trans "Invoice was paid on" %} <span class="timestamp">{{ item.payment_date|date:"SHORT_DATE_FORMAT" }}</span></div>
45 45
        {% elif item.paid %}
46 46
        <div class="paid paid-info">{% trans "Invoice has been paid." %}</div>
47 47
        {% endif %}
48
-