Mercurial > libervia-templates
annotate sat_templates/templates/default/list/overview.html @ 400:140690a18b63
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 |
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 %} |