2021-01-22 04:23:08 +00:00
|
|
|
{% extends "symposion/schedule/base.html" %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2017-09-27 13:46:13 +00:00
|
|
|
{% load lca2018_tags %}
|
2018-11-27 04:46:30 +00:00
|
|
|
{% load lca2019_tags %}
|
2015-10-16 17:53:02 +00:00
|
|
|
{% load sitetree %}
|
2020-11-22 12:21:54 +00:00
|
|
|
{% load static %}
|
2016-09-18 10:40:55 +00:00
|
|
|
{% load thumbnail %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% block head_title %}Presentation: {{ presentation.title }}{% endblock %}
|
2019-10-20 13:16:29 +00:00
|
|
|
{% block page_title %}{{ presentation.title }}{% endblock %}
|
2019-12-15 06:02:44 +00:00
|
|
|
{% block page_lead %}
|
|
|
|
{% if presentation.slot %}
|
2021-01-22 04:23:08 +00:00
|
|
|
{{ presentation.slot.rooms.0 }} | <span class="presentation-time" data-starttime="{{ presentation.slot.day.date|date:'c' }}T{{ presentation.slot.start|date:'c' }}" data-endtime="{{ presentation.slot.day.date|date:'c' }}T{{ presentation.slot.end|date:'c' }}">{{ presentation.slot.day.date|date:"D d M" }} {{ presentation.slot.start }}–{{ presentation.slot.end }}</span>
|
2019-12-15 06:02:44 +00:00
|
|
|
{% else %}
|
|
|
|
<em>Not currently scheduled.</em>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2016-09-18 10:40:55 +00:00
|
|
|
|
|
|
|
{% block content %}
|
2019-10-20 13:16:29 +00:00
|
|
|
{% if presentation.unpublish %}
|
2018-09-30 22:15:52 +00:00
|
|
|
<div class="row">
|
2019-10-20 13:16:29 +00:00
|
|
|
<div class="col">
|
|
|
|
<p><strong>Presentation not published.</strong></p>
|
2018-11-27 04:46:30 +00:00
|
|
|
</div>
|
2019-10-20 13:16:29 +00:00
|
|
|
</div>
|
|
|
|
{% endif %}
|
2018-09-30 22:15:52 +00:00
|
|
|
|
2019-10-20 13:16:29 +00:00
|
|
|
<div class="row presentation-details">
|
|
|
|
<div class="col-md-3">
|
|
|
|
<h2 class="mt-4">Presented by</h4>
|
2018-09-30 22:15:52 +00:00
|
|
|
<ul class="list-unstyled">
|
2018-11-27 04:46:30 +00:00
|
|
|
{% for speaker in presentation.speakers %}
|
|
|
|
<li class="mb-4 pb-2">
|
|
|
|
{% speaker_photo speaker 120 as speaker_photo_url %}
|
2019-10-20 23:07:50 +00:00
|
|
|
<img src="{{ speaker_photo_url }}" alt="{{ speaker }}" class="rounded-circle img-fluid">
|
2018-11-27 04:46:30 +00:00
|
|
|
<p>
|
2019-10-20 23:21:25 +00:00
|
|
|
<strong><a href="{% url "speaker_profile" speaker.pk %}">{{ speaker }}</a></strong><br />
|
2018-11-27 04:46:30 +00:00
|
|
|
{% if speaker.twitter_username %}
|
2018-11-27 07:45:47 +00:00
|
|
|
<a href="https://twitter.com/{{ speaker.twitter_username }}">{{ speaker.twitter_username|twitter_handle }}</a><br />
|
2018-11-27 04:46:30 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if speaker.homepage %}
|
|
|
|
<a href="{{ speaker.homepage }}">{{ speaker.homepage }}</a>
|
|
|
|
{% endif %}
|
|
|
|
</p>
|
|
|
|
<div class="bio">{{ speaker.biography_html|safe}}</div>
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
2018-09-30 22:15:52 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2018-11-27 04:46:30 +00:00
|
|
|
|
2019-10-20 13:16:29 +00:00
|
|
|
<div class="col-md-9 presentation-abstract">
|
|
|
|
<h2 class="mt-4">Abstract</h4>
|
2019-01-03 23:17:14 +00:00
|
|
|
{% autoescape off %}
|
|
|
|
<div class="abstract pb-4"><p>{{ presentation.abstract_html|safe|clean_text|urlize }}</p></div>
|
|
|
|
{% endautoescape %}
|
2018-11-27 04:46:30 +00:00
|
|
|
</div>
|
2019-10-20 13:16:29 +00:00
|
|
|
</div>
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|