2018-09-30 22:15:52 +00:00
|
|
|
{% extends "site_base.html" %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2017-09-27 13:46:13 +00:00
|
|
|
{% load lca2018_tags %}
|
2015-10-16 17:53:02 +00:00
|
|
|
{% load sitetree %}
|
2016-09-18 10:40:55 +00:00
|
|
|
{% load staticfiles %}
|
|
|
|
{% load thumbnail %}
|
2015-10-16 17:53:02 +00:00
|
|
|
|
|
|
|
{% block head_title %}Presentation: {{ presentation.title }}{% endblock %}
|
2018-09-30 22:15:52 +00:00
|
|
|
{% block body_class %}text-primary{% endblock body_class %}
|
2016-09-18 10:40:55 +00:00
|
|
|
{% block header_paragraph %}
|
|
|
|
<p>
|
|
|
|
Presented by
|
|
|
|
{% for speaker in presentation.speakers %}
|
|
|
|
<a href="{% url "speaker_profile" speaker.pk %}">{{ speaker }}</a>{% if not forloop.last %}, {% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
<br />
|
|
|
|
{% if presentation.slot %}
|
|
|
|
{{ presentation.slot.day.date|date:"l" }}
|
2018-01-14 16:03:32 +00:00
|
|
|
{{ presentation.slot.start}}–{{ presentation.slot.end }} in {{ presentation.slot.rooms.0 }}
|
2016-09-18 10:40:55 +00:00
|
|
|
<br />
|
|
|
|
{% endif %}
|
|
|
|
{% if presentation.proposal.get_target_audience_display %}
|
|
|
|
<strong>Target audience:</strong>
|
|
|
|
{{ presentation.proposal.get_target_audience_display }}
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2018-09-30 22:15:52 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-1"></div>
|
|
|
|
<div class="col-12 col-md-10">
|
|
|
|
<h1 class="mb-4 display-4">{{ presentation.title }}</h1>
|
|
|
|
|
|
|
|
<h2 class="mt-4 pt-4">Abstract</h2>
|
|
|
|
<div class="abstract pb-4"><p>{{ presentation.abstract_html|urlize|safe }}</p></div>
|
|
|
|
|
|
|
|
<h2 class="mt-4">Presented by</h2>
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
{% for speaker in presentation.speakers %}
|
|
|
|
{# {% speaker_photo speaker 512 as speaker_photo_url %} #}
|
|
|
|
{# {% include "_right_floating_image.html" with image_url=speaker_photo_url %} #}
|
|
|
|
{# <p><strong><a href="{% url "speaker_profile" speaker.pk %}">{{ speaker }}</a></strong><br /> #}
|
|
|
|
<p><strong>{{ speaker }}</strong><br />
|
|
|
|
<div class="bio">{{ speaker.biography_html|safe}}</div></p>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2016-09-18 10:40:55 +00:00
|
|
|
{% if presentation.unpublish %}
|
|
|
|
<p><strong>Presentation not published.</strong></p>
|
|
|
|
{% endif %}
|
|
|
|
|
2015-10-16 17:53:02 +00:00
|
|
|
|
2018-09-30 22:15:52 +00:00
|
|
|
{% comment %}
|
|
|
|
... leave here for later
|
2017-11-22 07:23:24 +00:00
|
|
|
<div class="presenters">
|
2018-09-30 22:15:52 +00:00
|
|
|
<h3>
|
2017-11-22 07:23:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
{% if speaker.homepage or speaker.twitter_username %}
|
|
|
|
<div class="btn-group">
|
|
|
|
{% if speaker.homepage %}
|
|
|
|
<a href="{{ speaker.homepage}}" class="btn-svg" title="Homepage">
|
|
|
|
{% include "cms_pages/home_page_blocks/btn_generic_link.html" %}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if speaker.twitter_username %}
|
|
|
|
<a href="https://twitter.com/{{ speaker.twitter_username }}" class="btn-svg" title="{{ speaker}} on twitter">
|
|
|
|
{% include "cms_pages/home_page_blocks/btn_twitter.html" %}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</h3>
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2018-09-30 22:15:52 +00:00
|
|
|
{% endcomment %}
|
2015-10-16 17:53:02 +00:00
|
|
|
{% endblock %}
|