annotate sat_templates/templates/default/list/overview.html @ 400:140690a18b63 default tip

call: group call design: Design for group call (which is used for both group call and A/V conferences) has been improved to: - have a working fullscreen button; - have a better display of peer users in grid, with responsive design; - have a nicer design for peer user, and adding avatar/nickname as overlay on the bottom of the video stream; - add a way to (un)pin a peer user, which make is appear on the whole width on top of the grid. rel 448 HG<S-Insert>: changed sat_templates/templates/bulma/call/group_peer.html
author Goffi <goffi@goffi.org>
date Tue, 06 Aug 2024 23:50:17 +0200
parents 1c330913ff13
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 %}