Projet

Général

Profil

0001-add-a-block-around-content-of-li-class-ui-name-34547.patch

Benjamin Dauvergne, 04 juillet 2019 18:02

Télécharger (1008 octets)

Voir les différences:

Subject: [PATCH] add a block around content of <li class="ui-name"> (#34547)

 gadjo/templates/gadjo/root.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
gadjo/templates/gadjo/root.html
31 31
      {% endif %}
32 32
      {% if user.is_authenticated %}
33 33
        <li class="ui-avatar">{{ user.get_full_name|slice:":1" }}</li>
34
        <li class="ui-name">{{ user.get_full_name }}</li>
34
        <li class="ui-name">{% block user-name %}{{ user.get_full_name }}{% endblock %}</li>
35 35
        <li class="ui-logout"><a href="{% block logout-url %}index.html{% endblock %}"
36 36
                                 title="{% trans "Logout" %}"></a></li>
37 37
      {% endif %}
38
-