Mercurial > libervia-templates
annotate sat_templates/templates/default/list/overview.html @ 402:2bbcb7da56bc default tip
bulma: use Font-Awesome instead of Fontello + start of major redesign:
- Font-Awesome is now used instead of Fontello, following change in Libervia Media.
- This is a beginning of a major redesign of the web templates/web frontend. This
currently breaks a lot of thing.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Oct 2024 22:53:26 +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 %} |