This repository was archived by the owner on Apr 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathlist_accepted_talks.html
More file actions
63 lines (60 loc) · 2.45 KB
/
list_accepted_talks.html
File metadata and controls
63 lines (60 loc) · 2.45 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{% extends "ep19/bs/base.html" %}
{% block content %}
<style type="text/css">
.talk {
padding: 1.5em 0;
border-top: 1px dotted #ddd;
border-bottom: 1px dotted #ddd;
}
</style>
<div class="container page" id="voting_page">
<div class="row">
<div class="col-md-12">
<h1>List of accepted proposals for EP2019</h1>
<h4>Proposal type
<a class='btn btn-{% if talk_type != "all" %}outline-{% endif %}success'
href="{% url 'talks:list' %}?talk_type=all&filter={{ filter }}"
>
All
</a>
<a class='btn btn-{% if talk_type != "talk" %}outline-{% endif %}success'
href="{% url 'talks:list' %}?talk_type=talk&filter={{ filter }}"
>
Talk
</a>
<a class='btn btn-{% if talk_type != "training" %}outline-{% endif %}success'
href="{% url 'talks:list' %}?talk_type=training&filter={{ filter }}"
>
Training
</a>
<a class='btn btn-{% if talk_type != "poster" %}outline-{% endif %}success'
href="{% url 'talks:list' %}?talk_type=poster&filter={{ filter }}"
>
Poster/Panel/Interactive
</a>
<a class='btn btn-{% if talk_type != "helpdesk" %}outline-{% endif %}success'
href="{% url 'talks:list' %}?talk_type=helpdesk&filter={{ filter }}"
>
Help desk
</a>
</h4>
</div>
</div>
<div class='row'>
<div class="col-md-12">
{% for talk in talks %}
<div class='talk'>
<h2>{{ talk.title }}</h2>
<h4>{{ talk.sub_title }}</h4>
<h5>{% for speaker in talk.get_all_speakers %}{{ speaker.user.assopy_user.name }}{% if not forloop.last %}, {% endif %}{% endfor %}</h5>
<p>{% for t in talk.tags.all %}<span class='badge badge-secondary'>{{ t }}</span> {% endfor %}</p>
{# <p>{{ talk.get_abstract|linebreaks }}</p> #}
<p>
<code>Type: {{ talk.get_type_display }}; Python level: {{ talk.get_level_display }}; Domain level: {{ talk.get_domain_level_display }}</code>
</p>
</div>
{% endfor %}{# talk in talks #}
</div>
</div>
</div>
{% endblock %}