Mercurial > libervia-templates
annotate sat_templates/templates/bulma/ticket/overview.html @ 235:f5f428a50c10
chat, ticket: use `pre-wrap` instead of `pre` for whitespaces
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 29 May 2020 21:58:19 +0200 |
parents | 0e69b5843c2f |
children | 1928ba66c194 |
rev | line source |
---|---|
230 | 1 {# display the list of tickets #} |
2 | |
3 {% set category_menu = [('ticket_new', url_tickets_new)] %} | |
4 {% extends 'base/base.html' %} | |
5 {% import 'input/xmlui.html' as xmlui with context %} | |
6 {% import 'input/navigation.html' as navigation with context %} | |
7 | |
8 {% block body %} | |
9 <section class="section has-background-white"> | |
10 <div class="content has-items-centered is-flex"> | |
11 {{ component.action_button(url_tickets_new) }} | |
12 </div> | |
13 <div id="tickets" class="container has-background-white has-padding-1"> | |
14 {{ xmlui.generate_list( | |
15 tickets, | |
16 ( | |
17 ('title', _('Title')), | |
18 ('labels', _('Labels')), | |
19 ('id', _('Id')), | |
20 ('author', _('Author')), | |
21 ), | |
22 { | |
23 'id': '\n#{value}', | |
24 'author': _('by {value}'), | |
25 }, | |
26 item_class_fields=['status', 'priority', 'severity'], | |
27 field_class_map={ | |
28 'title': 'has-text-weight-bold', | |
29 'labels': 'tag is-rounded x-is-hoverable', | |
235
f5f428a50c10
chat, ticket: use `pre-wrap` instead of `pre` for whitespaces
Goffi <goffi@goffi.org>
parents:
230
diff
changeset
|
30 'id': 'has-text-grey-light is-size-7 has-whitespace-pre-wrap', |
230 | 31 'author': 'is-size-7' |
32 }, | |
33 on_click=on_ticket_click) | |
34 }} | |
35 </div> | |
36 </section> | |
37 {{ navigation.prev_next(_("previous page"), _("next page")) }} | |
38 {% endblock body %} |