blob: 14a96609c9d354c20eb19feaaab7ac3d6337d511 (
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 slides %}
<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 %}
|