comparison 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
comparison
equal deleted inserted replaced
297:0657982e81af 298:1c330913ff13
1 {% extends 'base/base.html' %}
2 {% import 'input/xmlui.html' as xmlui with context %}
3
4 {% block body %}
5 <div id="tickets">
6 {% for ticket in tickets %}
7 <div class="ticket_full">
8 {{ xmlui.generate(ticket) }}
9 </div>
10 {% endfor %}
11 </div>
12 {% endblock body %}