blob: a56cc57a431edd629906a64d6b7015f838fbe504 (
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
26
27
28
29
30
31
32
|
{% extends 'page.html'%}
{% block breadcrumbs %}
<li><a href="{% url 'website:invited-speakers'%}">Invited Speakers</a></li>
<li><a href="{% url 'website:accepted-abstracts'%}">Selected Abstracts</a></li>
{% endblock %}
{% block content %}
<center><h4>Selected Abstracts</h4></center>
<table align="center">
<th>Title</th>
<th>Speaker</th>
<th>Type</th>
{% for paper in papers %}
<tr>
<td>{{ paper.title }}</td>
<td>{{ paper.user.first_name }} {{ paper.user.last_name }}</td>
<td>
{% if paper.talk_type %}
Pecha Kucha
{% else %}
Talk
{% endif %}
</td>
</tr>
{% endfor %}
</table>
<p>* <a href="http://en.wikipedia.org/wiki/PechaKucha" target="_blank">What is Pecha Kucha ?.</a>
<p>* This is the final list of selected abstracts.</p>
<p># Schedule of the talks & other details to follow.<p>
{% endblock %}
|