summaryrefslogtreecommitdiff
path: root/static/website/templates/view-abstracts.html
blob: 4f19bf5292d22289d20695bcab50bc32b08ea568 (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 'website/templates/base.html' %}

{% load widget_tweaks %}

{% block current %}
View Proposals
{% endblock %}


{% block content %}
    <a style="float:right;" href="{% url 'website:UserLogout' %}" class="btn btn-info">Logout</a>
    <br>
    <br>
    <table class="table table-bordered">
    <th width=50> Sr #
    <th>Title
    <th>Speaker
    {% for proposal in proposals %}
    <tr>
        <td>
            {{ forloop.counter }}
        </td>
        <td>
            <a href="{% url 'website:abstract_details' proposal.id %}">{{ proposal.title }}</a>
        </td>
        <td>
            {{ proposal.user.first_name }} {{ proposal.user.last_name }}
        </td>
    </tr>
    {% endfor %}
    </table>
{% endblock %}