summaryrefslogtreecommitdiff
path: root/website/templates/get-abstract.html
blob: 1ccee5f07ce810d065591534839a54eb7a7170de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<h3>{{ paper.title }}</h3>
<hr>
<h4 class="subheader">By-<i>{{ paper.user.first_name  }} {{ paper.user.last_name }}</i></h4>

<h5>Speaker Bio</h5>
<p>
    {{ paper.bio|safe }}
</p>
{% if paper.attachments %}
    <a href="{{ paper.attachments.url }}" class="button small"> View Abstract</a>
{% else %}
    <h5>Abstract</h5>
    <p style="text-align:justify">
        {{ paper.abstract }}
    </p>
{% endif %}