diff options
-rw-r--r-- | templates/conference/details.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/conference/details.html b/templates/conference/details.html new file mode 100644 index 0000000..f5ff520 --- /dev/null +++ b/templates/conference/details.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} +{% load static %} + +{% block content %} +<h2>{{ detail.title }}</h2> +<p>{{ detail.abstract }}</p> +<iframe src="{{ detail.video }}" allowFullScreen webkitallowFullScreen mozallowFullScreen width=616 height=407 rel=nofollow> </iframe> + +<p>By: {{ detail.speaker }}</p> +<a href="{{ detail.slides }}">Download Slides</a> +{% endblock %} + |