2016-08-08 18:41:54 +00:00
|
|
|
{% extends 'schedule_base.html' %}
|
2016-08-08 17:36:13 +00:00
|
|
|
|
2016-08-08 18:54:03 +00:00
|
|
|
{% block schedule_content %}
|
2016-08-08 17:36:13 +00:00
|
|
|
<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 19:01:38 +00:00
|
|
|
{{ speaker.name }} ({{ speaker.events.all.count }} event{{ speaker.events.all.count|pluralize }})
|
|
|
|
</a>
|
2016-08-08 17:36:13 +00:00
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2016-08-08 18:56:59 +00:00
|
|
|
{% endblock schedule_content %}
|