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("form-title-create-event") }}</h1>
8
9 <article class="message is-info">
10 <div class="message-body">
11 <p>
12 {{ t("events-public-notice") }}
13 </p>
14 <p>
15 {{ t("event-help-description") | safe }}
16 </p>
17 </div>
18 </article>
19
20 {% include 'create_event.' + current_locale + '.partial.html' %}
21
22 </div>
23
24 </div>
25</section>
26<script>
27 function checkUserKeydown(event) {
28 return event instanceof KeyboardEvent
29 }
30</script>