summaryrefslogtreecommitdiff
path: root/templates/conference/details.html
blob: 1e61b3aa231395adda2d1c7d8d9536121e777820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{% extends "base.html" %}
{% load static %}

{% block content %}
<h2>{{ detail.title }}</h2>
<p>{{ detail.abstract }}</p>

{% if video %}
<iframe src="{{ detail.video }}" allowFullScreen webkitallowFullScreen mozallowFullScreen width=616 height=407 rel=nofollow> </iframe> 
{% else %}
<p>Sorry, Video for this talk is not available.</p>
{% endif %}

<p>By: {{ detail.speaker }}</p>
{% if slides %}
<a href="{% static 'files/' %}{{ detail.slides }}">Download Slides</a>
{% else %}
<p>Sorry, Slides for this talk are not available.</p>
{% endif %}
{% endblock %}