bornhack-website/src/program/templates/speaker_list.html

17 lines
514 B
HTML
Raw Normal View History

{% extends 'schedule_base.html' %}
2016-08-08 17:36:13 +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 %}
<a href="{% url 'speaker_detail' camp_slug=camp.slug 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 %}