summaryrefslogtreecommitdiff
path: root/website/templates/list_abstracts_anonymous.html
blob: 74db499ded0dfcfaa95cb94b72b6ea72fd809409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% 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>{{ paper.title }}</td><td>{{ paper.user.first_name }} {{ paper.user.last_name }}</td></tr>
{% endfor %}
</table>
Note: This is the current list of submissions. Our committee is reviewing the same & the list of selected abstracts shall be published soon.
{% endblock %}