lingo: remove closing label tag (#57850)

This commit is contained in:
Benjamin Dauvergne 2021-10-14 11:46:16 +02:00
parent 360f47c2d1
commit 65ed19ffaa
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
{% if transaction.is_paid %}
<ul>
{% for item in transaction.items.all %}
<li>{{ item.subject }}: {{ item.amount }} €</label>
<li>{{ item.subject }}: {{ item.amount }} €
{% if item.source_url and item.user == request.user %}(<a href="{{ item.source_url}}">{% trans 'open' %}</a>){% endif %}</li>
{% endfor %}
</ul>