view default/ticket/tickets.html @ 137:efbf5423d7be

forum(overview): display a message if no forums are available on the server
author Goffi <goffi@goffi.org>
date Tue, 27 Mar 2018 08:32:34 +0200
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 %}