Update session layout

This commit is contained in:
Oliver Davies 2019-05-20 23:50:50 +01:00
parent 866c548d19
commit 200e357bf6
2 changed files with 4 additions and 5 deletions

View file

@ -1,7 +1,7 @@
<h2>Speakers</h2>
<ul>
{% for speaker in speakers if speaker.name in session.speakers %}
{% for speaker in speakers %}
<li>
<a href="{{ speaker.url }}">
{{ speaker.name }}

View file

@ -2,7 +2,6 @@
{% block content_bottom %}
{% include 'session-speakers' with {
session: page,
speakers: data.speakers,
speakers: sessionSpeakers(page, data.speakers),
} %}
{% endblock %}