8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-20 09:32:29 +00:00

Add lines to split profile information

This commit is contained in:
Alexandre Iooss 2018-12-30 12:35:41 +01:00
parent 573e6c2ad2
commit 5ae1a53172
2 changed files with 14 additions and 8 deletions

View file

@ -134,6 +134,12 @@ th.long_text{
}
/* Detailed information on profile page */
dl.profile-info {
margin-top: -16px;
margin-bottom: 0;
}
dl.profile-info > div {
padding: 8px;
border-top: 1px solid #ddd;
}

View file

@ -286,19 +286,19 @@ with this program; if not, write to the Free Software Foundation, Inc.,
</dd>
</div>
<div class="col-md-6 col-xs-12">
{% if users.adherent.gpg_fingerprint %}
{% if users.adherent.gpg_fingerprint %}
<div class="col-md-6 col-xs-12">
<dt>{% trans "GPG fingerprint" %}</dt>
<dd>{{ users.adherent.gpg_fingerprint }}</dd>
{% endif %}
</div>
</div>
{% endif %}
<div class="col-md-6 col-xs-12">
{% if users.shell %}
{% if users.shell %}
<div class="col-md-6 col-xs-12">
<dt>{% trans "Shell" %}</dt>
<dd>{{ users.shell }}</dd>
{% endif %}
</div>
</div>
{% endif %}
</dl>
</div>
</div>