Mercurial > libervia-templates
annotate default/ticket/overview.html @ 66:9834106678da
base: menu implementation:
2 menus are now handled: main menu and category menu (for submenus relative to a page).
Main menu is displayed on the side bar on big screen.
Added menu for tickets.
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 01 Dec 2017 00:46:42 +0100 |
parents | e7b62f6980a1 |
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 %} |