Mercurial > libervia-templates
comparison sat_templates/templates/bulma/ticket/discover.html @ 230:0e69b5843c2f
theme: bulma theme first draft:
This theme uses the Bulma CSS framework, Brython to handle the menu on touch devices, and
Sass to customize Bulma. CSS default fallbacks are disabled as Bulma uses its own naming
conventions, and default fallbacks would lead to hard to debug conflicts.
`common.js` has been slightly improved to handle custom classed in `tab_select`
The theme is not complete yet, but it is functional.
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 19 May 2020 00:02:34 +0200 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
229:739c3e6999fa | 230:0e69b5843c2f |
---|---|
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 a tickets tracker | |
15 {% endtrans %} | |
16 </div> | |
17 </article> | |
18 {% if tickets_trackers is defined %} | |
19 <div class="disco_tickets"> | |
20 {{block.disco_icon_grid(tickets_trackers, 'clipboard')}} | |
21 </div> | |
22 {% endif %} | |
23 </section> | |
24 <section class="section"> | |
25 {% call form.form(class="form--single") %} | |
26 {{ field.text("jid", _("tickets tracker jid"), required=true)}} | |
27 {{ field.submit(_("Access")) }} | |
28 {% endcall %} | |
29 </section> | |
30 {% endblock body %} |