17 lines
494 B
HTML
17 lines
494 B
HTML
{% extends 'schedule_base.html' %}
|
|
|
|
{% block schedule_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 %}
|
|
<a href="{% url 'schedule:speaker_detail' slug=speaker.slug %}" class="list-group-item">
|
|
{{ speaker.name }}
|
|
</a> ({{ speaker.events.all.count }} event{{ speaker.events.all.count|pluralize }})
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock content %}
|