Mercurial > libervia-templates
diff sat_templates/templates/default/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 | sat_templates/templates/default/ticket/discover.html@e9f0a4215e46 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sat_templates/templates/default/list/discover.html Thu Jan 28 18:42:59 2021 +0100 @@ -0,0 +1,25 @@ +{% extends 'base/base.html' %} +{% import 'components/block.html' as block with context %} +{% import 'components/images.html' as images with context %} +{% import 'components/avatar.html' as avatar with context %} +{% import 'input/form.html' as form with context %} +{% import 'input/field.html' as field with context %} + +{% block body %} +{{ icon_defs('clipboard') }} +<p class="instructions--head"> + {% trans %} + Please select a tickets tracker + {% endtrans %} +</p> +{% if tickets_trackers is defined %} + <div class="disco_tickets"> + {{block.disco_icon_grid(tickets_trackers, 'clipboard')}} + </div> +{% endif %} + +{% call form.form(class="form--single") %} + {{ field.text("jid", _("tickets tracker jid"), required=true)}} + {{ field.submit(_("Access")) }} +{% endcall %} +{% endblock body %}