-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent_attendee_details.html
More file actions
54 lines (45 loc) · 1.57 KB
/
Copy pathevent_attendee_details.html
File metadata and controls
54 lines (45 loc) · 1.57 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
{% load actionkit_tags %}
{% filter collapse_spaces %}
<div class="ak-field-box">
{% if campaign.use_title and campaign.show_title and event.title %}
<p class="ak-event-title"><a href="/event/{{ campaign.local_name }}/{{event.id}}/signup/?akid={{args.akid}}&zip={{args.zip}}">{{ event.title }}</a></p>
{% endif %}
{% if event.venue %}
<span class="ak-event-venue">{{ event.venue }}</span>
{% endif %}
<div class="ak-event-address1">{{ event.address1 }}</div>
<div class="ak-event-city-etc">{{ event.city_etc }}</div>
<table class="ak-event-table">
{% if event.get_starts_at_display %}
<tr class="ak-event-time">
<th>When:</th>
<td>
{{ event.get_starts_at_display }}
{% if event.is_in_past %}
<span class="ak-error ak-event-over-notice">
(event is now over)
</span>
{% endif %}
</td>
</tr>
{% endif %}
{% if event.directions %}
<tr class="ak-event-directions">
<th>Directions to event:</th>
<td>{{ event.directions }}</td>
</tr>
{% endif %}
{% if event.note_to_attendees %}
<tr class="ak-event-note-to-attendees">
<th>Your host says:</th>
<td>{{ event.note_to_attendees }}</td>
</tr>
{% endif %}
</table>
{% if event.public_description %}
<p class="ak-event-description">
{{ event.public_description }}
</p>
{% endif %}
</div>
{% endfilter %}