Skip to content

Commit b06e2a0

Browse files
committed
Fix list-inline
- Legacy-Id: 19612
1 parent 7e57e78 commit b06e2a0

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

ietf/templates/group/all_photos.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1>{{ group_type | upper }} {{ role }} Photos</h1>
2626
<ul class="list-inline">
2727
{% regroup letter.list by person as person_groups %}
2828
{% for person_with_groups in person_groups %}
29-
<li>
29+
<li class="list-inline-item">
3030
<div class="well photo-thumbnail">
3131
<a href="{% url 'ietf.person.views.profile' email_or_name=person_with_groups.grouper.name %}">
3232
<div>
@@ -63,4 +63,4 @@ <h1>{{ group_type | upper }} {{ role }} Photos</h1>
6363
</ul>
6464
</div>
6565

66-
{% endblock %}
66+
{% endblock %}

ietf/templates/group/group_photos.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1>{{ group }} ({{group.acronym}}) Photos</h1>
2626
<ul class="list-inline">
2727
{% regroup role_name.list by person as person_groups %}
2828
{% for person_with_groups in person_groups %}
29-
<li>
29+
<li class="list-inline-item">
3030
<a href="{% url 'ietf.person.views.profile' email_or_name=person_with_groups.grouper.name %}">
3131
<div class="well photo-thumbnail">
3232
<div>
@@ -60,4 +60,4 @@ <h1>{{ group }} ({{group.acronym}}) Photos</h1>
6060
</ul>
6161
</div>
6262

63-
{% endblock %}
63+
{% endblock %}

ietf/templates/iesg/photos.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ <h1>{{ group_type | upper }} {{ role }} Photos</h1>
4040
<ul class="list-inline">
4141
{% regroup letter.list by person as person_groups %}
4242
{% for person_with_groups in person_groups %}
43-
<li>
43+
<li class="list-inline-item">
4444
{% if person_with_groups.grouper.photo %}<a href="{% url 'ietf.person.views.profile' email_or_name=person_with_groups.grouper.name %}">{% endif %}
4545
<div class="well photo-thumbnail">
4646
<div>
@@ -71,4 +71,4 @@ <h1>{{ group_type | upper }} {{ role }} Photos</h1>
7171
{% endfor %}
7272
</ul>
7373
</div>
74-
{% endblock %}
74+
{% endblock %}

0 commit comments

Comments
 (0)