Update session layout
This commit is contained in:
parent
866c548d19
commit
200e357bf6
|
@ -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 }}
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
{% extends 'page' %}
|
||||
|
||||
{% block content_bottom %}
|
||||
{% include 'session-speakers' with {
|
||||
session: page,
|
||||
speakers: data.speakers,
|
||||
} %}
|
||||
{% include 'session-speakers' with {
|
||||
speakers: sessionSpeakers(page, data.speakers),
|
||||
} %}
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue