blob: 19d805472975274cb40ee72877ce95c16abef7e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends "base.html" %}
{% load static %}
{% block content %}
<h2 align="center"> <u>{{ detail.title }}</u> </h2>
<br>
<div class="wrap" style="text-align: center;">
<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 '' %}{{ detail.slides }}">Download Slides</a>
{% else %}
<p>Sorry, Slides for this talk are not available.</p>
{% endif %}
<br> <br>
</div> <!-- /wrap -->
{% endblock %}
|