Mercurial > libervia-templates
annotate default/ticket/overview.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 | 9834106678da |
children | e99bd385774a |
rev | line source |
---|---|
62 | 1 {# display the list of tickets #} |
2 | |
66 | 3 {% set category_menu = [('ticket_new', url_tickets_new)] %} |
56 | 4 {% extends 'base/base.html' %} |
5 {% import 'input/xmlui.html' as xmlui with context %} | |
6 | |
7 {% block body %} | |
8 <div id="tickets" class="view tickets overview"> | |
9 {{ xmlui.generate_table(tickets, (('id', _('Id')), | |
10 ('title', _('Title'))), | |
11 tr_class_fields=['status', 'priority', 'severity'], | |
12 on_click=on_ticket_click) }} | |
13 </div> | |
14 {% endblock body %} |