comparison sat_templates/templates/bulma/list/create.html @ 298:1c330913ff13

bulma (tickets): renamed "tickets" to "lists"
author Goffi <goffi@goffi.org>
date Thu, 28 Jan 2021 18:42:59 +0100
parents
children 877f01720036
comparison
equal deleted inserted replaced
297:0657982e81af 298:1c330913ff13
1 {% extends 'base/base.html' %}
2 {% import 'components/block.html' as block with context %}
3 {% import 'components/images.html' as images with context %}
4 {% import 'components/avatar.html' as avatar with context %}
5 {% import 'input/form.html' as form with context %}
6 {% import 'input/field.html' as field with context %}
7
8 {% block body %}
9 {{ icon_defs('clipboard') }}
10 <section class="section">
11 <nav class="level mb-4">
12 <div class="level-left">
13 <div class="level-item">
14 {{ component.action_button(url_list_new) }}
15 </div>
16 </div>
17 </nav>
18 <article class="message has-text-centered">
19 <div class="message-body">
20 {% trans %}
21 Please select the list to use.
22 {% endtrans %}
23 </div>
24 </article>
25 {% if lists_directory is defined %}
26 <div class="disco_lists">
27 {{block.disco_icon_grid(lists_directory, 'clipboard')}}
28 </div>
29 {% endif %}
30 </section>
31 <section class="section">
32 {% call form.form(class="form--single") %}
33 {{ field.text("jid", _("list jid"), required=true)}}
34 {{ field.submit(_("Access")) }}
35 {% endcall %}
36 </section>
37 {% endblock body %}