view default/ticket/tickets.html @ 146:7dc00829c32f

Instal sat_templates the python's way You can just call 'pip install .' to install sat_templates.
author Xavier Maillard <xavier@maillard.im>
date Sat, 30 Dec 2017 14:13:09 +0100
parents ea67eba3199d
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 %}