Mercurial > libervia-templates
diff sat_templates/templates/default/list/tickets.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/tickets.html@e9f0a4215e46 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sat_templates/templates/default/list/tickets.html Thu Jan 28 18:42:59 2021 +0100 @@ -0,0 +1,12 @@ +{% extends 'base/base.html' %} +{% import 'input/xmlui.html' as xmlui with context %} + +{% block body %} +<div id="tickets"> + {% for ticket in tickets %} + <div class="ticket_full"> + {{ xmlui.generate(ticket) }} + </div> + {% endfor %} +</div> +{% endblock body %}