bornhack-website/program/templates/speaker_list.html

17 lines
514 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 'speaker_detail' camp_slug=camp.slug slug=speaker.slug %}" class="list-group-item">
{{ speaker.name }} ({{ speaker.events.all.count }} event{{ speaker.events.all.count|pluralize }})
</a>
{% endfor %}
</div>
{% endblock schedule_content %}