-
Notifications
You must be signed in to change notification settings - Fork 1
/
event_chooser.html
38 lines (35 loc) · 1.24 KB
/
event_chooser.html
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
{% extends "./wrapper.html" %}
{% block content %}
{% if signups.count == 0 %}
<div class="ak-grid-row">
<div class="ak-grid-col ak-grid-col-12-of-12">
<h2>You aren't signed up for any events</h2>
</div>
</div>
<div class="ak-grid-row">
<div class="ak-grid-col ak-grid-col-12-of-12">
<div><a href="/event/{{ campaign.local_name }}/">Search for an event here</a></div>
</div>
</div>
{% else %}
<div class="ak-grid-row">
<div class="ak-grid-col ak-grid-col-12-of-12">
<h2>Please choose an event below.</h2>
</div>
</div>
<div class="ak-grid-row">
<div class="ak-grid-col ak-grid-col-12-of-12">
<ul>
{% for signup in signups %}
<li>
<a href="{{ signup.url }}{% if signup.role == 'host' and request.GET.i %}&i={{ request.GET.i|urlencode }}&l=1{% endif %}">{{ signup.event.title }} — {{ signup.event.get_starts_at_display }}</a>
{% if signup.role == 'host' %}
(you are hosting)
{% endif %}
</li>
{% endfor %}
</ul>
</div>
</div>
{% endif %}
{% endblock %}