Mercurial > libervia-templates
annotate sat_templates/templates/default/list/overview.html @ 411:f7a434581872 default tip
chat: Add forward, rich editing and extra recipients:
- There is a new "forward" menu in message. For now, a simple prompt ask for recipient JID.
- A new "extra" menu is available next to input field. Inside there are 2 items for now:
add extra recipient, and toggle rich edit mode.
- Extra recipient option add a field to add an email-like "to", "cc" or "bcc" recipients.
- Rich edit let use rich styling such as bold, italic, underline, etc.
rel 461
| author | Goffi <goffi@goffi.org> |
|---|---|
| date | Fri, 04 Jul 2025 17:33:22 +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 %} |
