annotate sat_templates/templates/default/ticket/overview.html @ 209:d586ea13cfed

blog: fixed setting of title: title was not show when embedded was True, but this is always the case (articles.html template is always shown in base.html). A new "blog_page" boolean is set when articles.html is the main page displayed (i.e. blog posts are not embedded in an other page like events), and use to display the title, fixing the originally intented behaviour. fix 298
author Goffi <goffi@goffi.org>
date Fri, 14 Jun 2019 12:49:04 +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 %}