Mercurial > libervia-templates
annotate sat_templates/templates/bulma/event/attendance.html @ 402:2bbcb7da56bc default tip
bulma: use Font-Awesome instead of Fontello + start of major redesign:
- Font-Awesome is now used instead of Fontello, following change in Libervia Media.
- This is a beginning of a major redesign of the web templates/web frontend. This
currently breaks a lot of thing.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Oct 2024 22:53: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 |