bornhack-website/program/templates/speaker_list.html
Thomas Steen Rasmussen c20e1e55cc more schedule styling
2016-08-08 21:01:38 +02:00

17 lines
503 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 }} ({{ speaker.events.all.count }} event{{ speaker.events.all.count|pluralize }})
</a>
{% endfor %}
</div>
{% endblock schedule_content %}