2017-02-17 16:17:21 +00:00
|
|
|
{% extends 'program_base.html' %}
|
2016-08-08 17:36:13 +00:00
|
|
|
|
2017-02-17 16:17:21 +00:00
|
|
|
{% block program_content %}
|
2017-04-09 15:49:44 +00:00
|
|
|
|
2017-02-22 09:02:02 +00:00
|
|
|
{% if speaker_list %}
|
2016-08-08 17:36:13 +00:00
|
|
|
<p class="lead">
|
2017-02-17 16:17:21 +00:00
|
|
|
An alphabetical list of all speakers, workshop hosts and other
|
2017-04-02 16:04:57 +00:00
|
|
|
event anchors at {{ camp.title }}.
|
2016-08-08 17:36:13 +00:00
|
|
|
</p>
|
|
|
|
|
2017-04-01 19:45:43 +00:00
|
|
|
|
|
|
|
<hr />
|
|
|
|
|
2016-08-08 17:36:13 +00:00
|
|
|
<div class="list-group">
|
|
|
|
{% for speaker in speaker_list %}
|
2018-05-20 16:16:20 +00:00
|
|
|
<a href="{% url 'program: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>
|
2017-02-22 09:02:02 +00:00
|
|
|
{% endif %}
|
2017-02-17 16:17:21 +00:00
|
|
|
{% endblock program_content %}
|