2017-02-17 16:17:21 +00:00
|
|
|
{% extends 'program_base.html' %}
|
2016-08-08 17:45:32 +00:00
|
|
|
{% load commonmark %}
|
|
|
|
|
2017-02-17 16:17:21 +00:00
|
|
|
{% block program_content %}
|
2016-08-08 17:45:32 +00:00
|
|
|
|
2017-03-12 15:56:04 +00:00
|
|
|
<h3>{{ speaker.name }}</h3>
|
2016-08-08 17:45:32 +00:00
|
|
|
|
2017-02-19 18:44:46 +00:00
|
|
|
{% if speaker.picture_large and speaker.picture_small %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-8 text-container">
|
2016-08-08 17:45:32 +00:00
|
|
|
{{ speaker.biography|commonmark }}
|
2017-02-19 18:44:46 +00:00
|
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
|
|
<a href="{% url 'speaker_picture' camp_slug=camp.slug slug=speaker.slug picture='large' %}" >
|
2017-07-12 13:49:52 +00:00
|
|
|
<img src="{% url 'speaker_picture' camp_slug=camp.slug slug=speaker.slug picture='thumbnail' %}" alt="{{ camp.title }} speaker picture of {{ speaker.name }}" width="200px">
|
2017-02-19 18:44:46 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
{{ speaker.biography|commonmark }}
|
|
|
|
{% endif %}
|
|
|
|
|
2016-08-08 17:45:32 +00:00
|
|
|
<hr />
|
|
|
|
|
|
|
|
{% if speaker.events.exists %}
|
2017-01-24 23:24:04 +00:00
|
|
|
{% for event in speaker.events.all %}
|
|
|
|
<h3>
|
|
|
|
<small style="background-color: {{ event.event_type.color }}; border: 0; color: {% if event.event_type.light_text %}white{% else %}black{% endif %}; display: inline-block; padding: 5px;">
|
|
|
|
{{ event.event_type.name }}
|
|
|
|
</small>
|
|
|
|
<a href="{% url 'event_detail' camp_slug=camp.slug slug=event.slug %}">{{ event.title }}</a>
|
|
|
|
</h3>
|
|
|
|
{{ event.abstract|commonmark }}
|
|
|
|
|
|
|
|
<h4>Instances</h4>
|
|
|
|
<ul class="list-group">
|
|
|
|
{% for ei in event.instances.all %}
|
|
|
|
<li class="list-group-item">{{ ei.when.lower|date:"l M. d H:i" }} - {{ ei.when.upper|date:"H:i" }}</li>
|
|
|
|
{% empty %}
|
|
|
|
No instances scheduled yet
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</h4>
|
|
|
|
<hr>
|
|
|
|
{% empty %}
|
|
|
|
No events registered for this speaker yet
|
|
|
|
{% endfor %}
|
2016-08-08 23:02:54 +00:00
|
|
|
{% endif %}
|
2017-02-17 16:17:21 +00:00
|
|
|
{% endblock program_content %}
|