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

28 lines
848 B
HTML
Raw Normal View History

{% extends 'program_base.html' %}
2016-08-08 17:36:13 +00:00
{% block title %}
Speakers and hosts at {{ camp.title }} | {{ block.super }}
{% endblock %}
{% block program_content %}
2017-04-09 15:49:44 +00:00
{% if speaker_list %}
2016-08-08 17:36:13 +00:00
<p class="lead">
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 %}
<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>
{% else %}
<p class="lead">No speakers found for {{ camp.title }}</p>
{% endif %}
{% endblock program_content %}