Mercurial > libervia-templates
comparison sat_templates/templates/bulma/list/discover.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 <article class="message has-text-centered"> | |
12 <div class="message-body"> | |
13 {% trans %} | |
14 Please select the list to use. | |
15 {% endtrans %} | |
16 </div> | |
17 </article> | |
18 {% if lists_directory is defined %} | |
19 <div class="disco_lists"> | |
20 {{block.disco_icon_grid(lists_directory, 'clipboard')}} | |
21 </div> | |
22 {% endif %} | |
23 </section> | |
24 <section class="section"> | |
25 {% call form.form(class="form--single") %} | |
26 {{ field.text("jid", _("list jid"), required=true)}} | |
27 {{ field.submit(_("Access")) }} | |
28 {% endcall %} | |
29 </section> | |
30 {% endblock body %} |