comparison sat_templates/templates/default/event/attendance.html @ 164:e9f0a4215e46

multi-sites handling (moved templates to "templates" sub-directory) + noscript styles handling.
author Goffi <goffi@goffi.org>
date Mon, 10 Sep 2018 08:53:33 +0200
parents sat_templates/default/event/attendance.html@33c7ce833d3f
children
comparison
equal deleted inserted replaced
163:33f67228686a 164:e9f0a4215e46
1 {% import 'input/form.html' as form with context %}
2 {% import 'input/field.html' as field with context %}
3
4 <div class="attendance box">
5 <p class="poll_instructions">{% trans %}Please indicate if you plan to attend the event:{% endtrans %}</p>
6 {% call form.form() %}
7 {{ field.meta("type", "attendance") }}
8 {{ field.meta("service", event.invitees_service) }}
9 {{ field.meta("node", event.invitees_node) }}
10 <div class="attending">
11 {{ field.choices("attend", (("yes", _("yes")), ("no", _("no")), ("maybe", _("maybe"))), checked=invitee.attend) }}
12 </div>
13 <div class="guests">
14 {{ field.int("guests", label=_("How many people will come (including you)?"), init=invitee.get("guests", 1)) }}
15 </div>
16 <div class="submit">
17 {{ field.submit() }}
18 </div>
19 {% endcall %}
20 </div>