Mercurial > libervia-templates
annotate sat_templates/templates/default/list/overview.html @ 413:0190a0d32909 default tip
Forum: Major redesign of forums:
Forums have been redesigned. They follow the new general design with 2 or 3 panels,
allowing to have directly a forum if one is found/set up, and a panel on the left to
search/discover other ones.
Categories have been rewritten to be usable with pubsub relationships, a XEP-0277 type
node is used for topics, and each item has a comments node for the threads.
The thread view is set in `forum/show_messages.html` template. It has a header with a
search box and a button to (un)subscribe.
Items are displayed with the same macros as for the blog items.
Below a room is set for editor, tags and attachments.
rel 463
| author | Goffi <goffi@goffi.org> |
|---|---|
| date | Fri, 05 Sep 2025 21:54:09 +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 %} |
