summaryrefslogtreecommitdiff
path: root/website/templates/list_abstracts.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/list_abstracts.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/list_abstracts.html')
-rw-r--r--website/templates/list_abstracts.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/website/templates/list_abstracts.html b/website/templates/list_abstracts.html
new file mode 100644
index 0000000..4389d2d
--- /dev/null
+++ b/website/templates/list_abstracts.html
@@ -0,0 +1,18 @@
+{% extends 'page.html'%}
+
+{% 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>List of Abstracts</h4></center>
+
+<table align="center">
+<th>Title
+<th>Speaker
+{% for paper in papers %}
+ <tr><td><a href="{% url 'website:abstract-details' paper.id %}">{{ paper.title }}</a></td><td>{{ paper.user.first_name }} {{ paper.user.last_name }}</td></tr>
+{% endfor %}
+</table>
+{% endblock %}