view sat_templates/templates/bulma/ticket/tickets.html @ 279:a35ddf972ad2

bulma (base/base.html): display backend confirmation and notifications
author Goffi <goffi@goffi.org>
date Sat, 15 Aug 2020 23:38:12 +0200
parents 0e69b5843c2f
children
line wrap: on
line source

{% 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 %}