annotate sat_templates/templates/default/ticket/overview.html @ 295:1de599c5a68f

bulma (base): loading screen: when the `loading_screen` variable is set before extending `base/base.html`, a loading modal is shown (and must be removed via JavaScript). This avoids the user to try to use an interface which is not reactive or working normally because JS is not fully loaded yet.
author Goffi <goffi@goffi.org>
date Fri, 27 Nov 2020 12:24:03 +0100
parents 9e9ce1ae8b53
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
62
e7b62f6980a1 ticket: added menus
Goffi <goffi@goffi.org>
parents: 56
diff changeset
1 {# display the list of tickets #}
e7b62f6980a1 ticket: added menus
Goffi <goffi@goffi.org>
parents: 56
diff changeset
2
66
9834106678da base: menu implementation:
Goffi <goffi@goffi.org>
parents: 62
diff changeset
3 {% set category_menu = [('ticket_new', url_tickets_new)] %}
56
ea67eba3199d ticket: first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
4 {% extends 'base/base.html' %}
ea67eba3199d ticket: first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
5 {% import 'input/xmlui.html' as xmlui with context %}
168
9e9ce1ae8b53 ticket/overview: added pagination
Goffi <goffi@goffi.org>
parents: 164
diff changeset
6 {% import 'input/navigation.html' as navigation with context %}
56
ea67eba3199d ticket: first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
7
ea67eba3199d ticket: first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
8 {% block body %}
168
9e9ce1ae8b53 ticket/overview: added pagination
Goffi <goffi@goffi.org>
parents: 164
diff changeset
9 {{ icon_defs('angle-double-left', 'angle-double-right') }}
56
ea67eba3199d ticket: first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
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
ea67eba3199d ticket: first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
17 </div>
168
9e9ce1ae8b53 ticket/overview: added pagination
Goffi <goffi@goffi.org>
parents: 164
diff changeset
18 {{ navigation.prev_next(_("previous page"), _("next page")) }}
56
ea67eba3199d ticket: first draft:
Goffi <goffi@goffi.org>
parents:
diff changeset
19 {% endblock body %}