Mercurial > libervia-templates
annotate sat_templates/templates/bulma/event/attendance.html @ 289:f1a39607d6a5
bulma (base/base.html): `full_screen_body` parameter + body_wrapper:
- if `full_screen_body` is set in template, the `body--fullscreen` class will be added to
`<body>` element. It will then be a flexbox container (in columns), and displayed on the whole viewport.
- new `body_wrapper` block, if a page needs to replace the `#body` container.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 28 Sep 2020 17:25:26 +0200 |
parents | 1928ba66c194 |
children |
rev | line source |
---|---|
230 | 1 {% import 'input/form.html' as form with context %} |
2 {% import 'input/field.html' as field with context %} | |
3 | |
4 | |
5 <div class="message"> | |
6 <div class="message-body is-info"> | |
7 {% trans %}Please indicate if you plan to attend the event:{% endtrans %} | |
8 </div> | |
9 </div> | |
10 {% call form.form() %} | |
11 {{ field.meta("type", "attendance") }} | |
12 {{ field.meta("service", event.invitees_service) }} | |
13 {{ field.meta("node", event.invitees_node) }} | |
14 <div class="box attending"> | |
15 {{ field.choices("attend", (("yes", _("yes")), ("no", _("no")), ("maybe", _("maybe"))), checked=invitee.attend) }} | |
16 </div> | |
17 <div class="guests"> | |
18 {{ field.int("guests", label=_("How many people will come (including you)?"), init=invitee.get("guests", 1)) }} | |
19 </div> | |
246
1928ba66c194
bulma: replaced custom styles by new spacing helpers
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
20 <div class="submit mt-4"> |
230 | 21 {{ field.submit() }} |
22 </div> | |
23 {% endcall %} | |
24 |