blob: 3a6a2ef676b07676d639d0ce80d59db2881ad7af (
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
33
|
{% extends 'page.html'%}
{% block breadcrumbs %}
<li class="current"><a href="">Selected Abstracts</a></li>
<li><a href="{% url 'website:invited-speakers'%}">Invited Speakers</a></li>
<li><a href="{% url 'website:schedule'%}">Schedule</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 %}
|