Mercurial > libervia-templates
annotate default/ticket/overview.html @ 72:18d00a8afc4d
ticket(item): fixed menus
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 04 Dec 2017 00:48:24 +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 %} |