annotate sat_templates/templates/default/ticket/overview.html @ 249:60bf3e45d7b2

bulma (input/field): don't use kwargs anymore: `**kwargs` syntax is not supported by `nunjucks`. To work around this, most important arguments have been added directly to macros, and an extra `attrs` argument can be used for others.
author Goffi <goffi@goffi.org>
date Thu, 16 Jul 2020 09:08:34 +0200
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 %}