Add speakers.
This commit is contained in:
parent
018f3ead1a
commit
909d7d8a00
1 changed files with 28 additions and 27 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue