Projet

Général

Profil

0001-profile-cell-move-div-content-wrapper-after-cell-tit.patch

Thomas Jund, 12 avril 2021 15:44

Télécharger (922 octets)

Voir les différences:

Subject: [PATCH] profile-cell: move div content wrapper after cell title
 (#52968)

 combo/profile/templates/combo/profile.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
combo/profile/templates/combo/profile.html
1 1
{% load i18n %}
2 2
{% block cell-content %}
3
<div class="profile">
4 3
<h2>{% trans "Profile" %}</h2>
4
<div class="profile">
5 5
{% for key, details in profile_fields.items %}
6 6
  {% if details.value and details.user_visible %}
7 7
    <p><span class="label">{{ details.label }}</span> <span class="value">{{ details.value }}</span></p>
8
-