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">
|
2018-07-17 22:15:14 +00:00
|
|
|
{{ speaker.name }} {% for event in speaker.events.all %}<i class="fas fa-{{ event.event_type.icon }} fa-lg" style="color: {{ event.event_type.color }};" data-toggle="tooltip" title="{{ event.title }}"></i> {% endfor %}</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 %}
|