forked from
smokesignal.events/smokesignal
i18n+filtering fork - fluent-templates v2
1{% from "form_include.html" import text_input %}
2<section class="section is-fullheight">
3 <div class="container ">
4
5 <div class="box content">
6
7 <h1>{{ t("create-rsvp-title") }}</h1>
8
9 <article class="message is-info">
10 <div class="message-body">
11 <p>
12 {{ t("create-rsvp-public-notice") }}
13 </p>
14 <p>
15 {{ t("create-rsvp-help-text") | safe }}
16 </p>
17 </div>
18 </article>
19
20 {% include 'create_rsvp.' + current_locale + '.partial.html' %}
21
22 </div>
23
24 </div>
25</section>