Mercurial > libervia-templates
annotate sat_templates/templates/default/list/overview.html @ 298:1c330913ff13
bulma (tickets): renamed "tickets" to "lists"
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 28 Jan 2021 18:42:59 +0100 |
parents | sat_templates/templates/default/ticket/overview.html@9e9ce1ae8b53 |
children |
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 %} | |
168 | 6 {% import 'input/navigation.html' as navigation with context %} |
56 | 7 |
8 {% block body %} | |
168 | 9 {{ icon_defs('angle-double-left', 'angle-double-right') }} |
56 | 10 <div id="tickets" class="view tickets overview"> |
74
e99bd385774a
ticket(overview): use list instead of table and display labels
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
11 {{ xmlui.generate_list(tickets, (('id', _('Id')), |
e99bd385774a
ticket(overview): use list instead of table and display labels
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
12 ('title', _('Title')), |
e99bd385774a
ticket(overview): use list instead of table and display labels
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
13 ('labels', _('Labels'))), |
e99bd385774a
ticket(overview): use list instead of table and display labels
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
14 {'id': '[{value}]'}, |
e99bd385774a
ticket(overview): use list instead of table and display labels
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
15 item_class_fields=['status', 'priority', 'severity'], |
e99bd385774a
ticket(overview): use list instead of table and display labels
Goffi <goffi@goffi.org>
parents:
66
diff
changeset
|
16 on_click=on_ticket_click) }} |
56 | 17 </div> |
168 | 18 {{ navigation.prev_next(_("previous page"), _("next page")) }} |
56 | 19 {% endblock body %} |