Add speakers.

This commit is contained in:
Christopher Neugebauer 2019-09-29 12:39:15 -07:00
parent 018f3ead1a
commit 909d7d8a00

View file

@ -100,16 +100,17 @@
<span class="speaker-description">Featured Speaker</span> <span class="speaker-description">Featured Speaker</span>
</div> </div>
{% for i in '1234' %} {% speakers as speakers %}
{% for speaker in speakers %}
{% for presentation in speaker.presentations.all %}
<div class="speaker_"> <div class="speaker_">
<span class="speaker-name">Beeper Booper</span> <span class="speaker-name">{{ speaker.conferencespeaker.name }}</span>
<span class="speaker-description">Less Important Speaker</span> <span class="speaker-description">
<a href="{% url "schedule_presentation_detail" presentation.id %}">{{ presentation.title }}</a>
</span>
</div> </div>
{% endfor %} {% endfor %}
{%endfor%}
</ul>
</div> </div>
</div> </div>