bornhack-website/program/templates/speaker_list.html

17 lines
397 B
HTML
Raw Normal View History

2016-08-08 17:36:13 +00:00
{% extends 'base.html' %}
{% block content %}
<p class="lead">
An alphabetical list of all speakers, workshop hosts and other
event anchors at BornHack 2016.
</p>
<div class="list-group">
{% for speaker in speaker_list %}
2016-08-08 17:50:35 +00:00
<a href="{% url 'schedule:speaker_detail' slug=speaker.slug %}" class="list-group-item">
2016-08-08 17:36:13 +00:00
{{ speaker.name }}
</a>
{% endfor %}
</div>
{% endblock content %}