summaryrefslogtreecommitdiff
path: root/website/templates/abstract_details.html
diff options
context:
space:
mode:
authorJayaram Pai2013-11-27 13:46:31 +0530
committerJayaram Pai2013-11-27 13:46:31 +0530
commit41a2953f337e92f3b5dfd914bd426e2463be7183 (patch)
tree957f51d13a411e25f3efc9f74d55703c54a5bc22 /website/templates/abstract_details.html
parent1f47c93f1b57a4ff0435c7f396a7fe2b856508ba (diff)
parent9231054c96e650e500cfffe3edb9d09c29a7fd07 (diff)
downloadSciPy2013-41a2953f337e92f3b5dfd914bd426e2463be7183.tar.gz
SciPy2013-41a2953f337e92f3b5dfd914bd426e2463be7183.tar.bz2
SciPy2013-41a2953f337e92f3b5dfd914bd426e2463be7183.zip
Merge branch 'master' of https://github.com/FOSSEE/SciPy2013
Diffstat (limited to 'website/templates/abstract_details.html')
-rw-r--r--website/templates/abstract_details.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/website/templates/abstract_details.html b/website/templates/abstract_details.html
new file mode 100644
index 0000000..3abf02e
--- /dev/null
+++ b/website/templates/abstract_details.html
@@ -0,0 +1,22 @@
+{% extends 'page.html'%}
+{% load static %}
+
+{% block breadcrumbs %}
+<li><a href="{% url 'website:invited-speakers'%}">Invited Speakers</a></li>
+<li><a href="{% url 'website:list-abstracts'%}">List of Abstracts</a></li>
+{% endblock %}
+
+{% block content %}
+<center><h4>{{ paper.title }}</h4></center>
+
+<p><strong>{{ paper.user.first_name }} {{ paper.user.last_name }}</strong></p>
+<p><strong>{{ paper.bio }}</strong></p>
+<p><strong>Abstract: </strong></p>
+<div id="abstract">
+<p>{{ paper.abstract }}</p>
+</div>
+<p>Affiliation: <strong>{{ paper.affiliation }}</strong></p>
+<p>Links: {{ paper.links }}</p>
+<p><a href="/downloads/{{ paper.attachments }}">Attachment</a></p>
+
+{% endblock %}