-
Notifications
You must be signed in to change notification settings - Fork 1
/
event_moderate_details.html
69 lines (65 loc) · 1.99 KB
/
event_moderate_details.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
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
64
65
66
67
68
69
{% load actionkit_tags %}
{% filter collapse_spaces %}
{% if event.venue %}
<div class="event-venue">
{{ event.venue }}
</div>
{% endif %}
<div class="event-address clearfix">
<div class="event-address-content">
<div class="event-address1">{{ event.address1 }}</div>
<div class="event-city-etc">{{ event.city_etc }}</div>
</div>
</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|linebreaksbr }}</td>
</tr>
{% endif %}
{% if event.note_to_attendees %}
<tr class="ak-event-note-to-attendees">
<th>Note to attendees:</th>
<td>{{ event.note_to_attendees|linebreaksbr }}</td>
</tr>
{% endif %}
{% if event.campaign.allow_private %}
<tr class="ak-event-privacy">
<th>Privacy:</th>
<td>
<label>
Event is {% if event.is_private %}private{% else %}public{% endif %}.
</label>
</td>
</tr>
{% endif %}
<tr class="ak-event-status">
<th>Status:</th>
<td>
{{ event.status_summary_display }}
</td>
</tr>
{% if event.notes and event.campaign.show_notes %}
<tr class="ak-event-notes">
<th>Staff notes:</th>
<td>
{{ event.notes }}
</td>
</tr>
{% endif %}
<tr class="ak-event-signup-link">
<th>Signup link:</th>
<td> <a href="{% client_domain_url event.public_url %}">{% client_domain_url event.public_url %}</a></td>
</tr>
</table>
{% if event.public_description %}
<p class="ak-event-description">{{ event.public_description|linebreaksbr }}</p>
{% endif %}
{% endfilter %}