Projet

Général

Profil

0001-lingo-remove-closing-label-tag-57850.patch

Benjamin Dauvergne, 14 octobre 2021 11:47

Télécharger (1,04 ko)

Voir les différences:

Subject: [PATCH 1/2] lingo: remove closing label tag (#57850)

 combo/apps/lingo/templates/lingo/combo/recent_transactions.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/apps/lingo/templates/lingo/combo/recent_transactions.html
8 8
    {% if transaction.is_paid %}
9 9
    <ul>
10 10
    {% for item in transaction.items.all %}
11
      <li>{{ item.subject }}: {{ item.amount }} €</label>
11
      <li>{{ item.subject }}: {{ item.amount }} €
12 12
       {% if item.source_url and item.user == request.user %}(<a href="{{ item.source_url}}">{% trans 'open' %}</a>){% endif %}</li>
13 13
    {% endfor %}
14 14
    </ul>
15
-