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

This commit is contained in:
Benjamin Dauvergne 2020-10-10 14:19:40 +02:00
parent 49d9a3023e
commit 23314e0f33
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
<div class="issued">{% trans "Issue date:" %} <span class="timestamp">{{ item.creation_date|date:"SHORT_DATE_FORMAT" }}</span></div>
{% if item.payment_limit_date %}
<div class="invoice-payment-limit-date">{% trans "Payment due date:" %}
<span class="timestamp">{{ item.payment_limit_date|date:"SHORT_DATE_FORMAT" }}</span></div>
<span class="timestamp">{{ item.payment_limit_date|date:"SHORT_DATE_FORMAT" }} {% trans "(up to and including)" %}</span></div>
{% endif %}
{% if item.payment_date %}
<div class="paid">{% trans "Payment date:" %} <span class="timestamp">{{ item.payment_date|date:"SHORT_DATE_FORMAT" }}</span></div>