view default/ticket/tickets.html @ 69:339f4011ed9b

merge-request: first draft: template for viewing a merge request (comments + patches) + a text explaining how to use jp to create a new one (new merge requests from inside Libervia is not handled yet).
author Goffi <goffi@goffi.org>
date Fri, 01 Dec 2017 00:46:45 +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 %}