Mercurial > libervia-templates
annotate default/ticket/item.html @ 63:a9ecc765214c
ticket(view): use CSS grid to display metadata, and put data next to labels
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 11 Nov 2017 17:20:28 +0100 |
parents | e7b62f6980a1 |
children | 9834106678da |
rev | line source |
---|---|
56 | 1 {# display a single ticket |
2 | |
3 @variable item(xmlui_item): ticket to display | |
4 @variable comments(data_object.BlogItems): comments of the ticket | |
5 @variable comments_service(unicode): service for adding comments | |
6 @variable comments_node(unicode): node for adding comments | |
7 #} | |
8 | |
62 | 9 {% set menus = [(url_tickets_list, _('Tickets list'), 'tickets_list'), |
10 (url_tickets_new, _('Create new ticket'), 'ticket_new')] %} | |
56 | 11 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} |
12 {% import 'input/xmlui.html' as xmlui with context %} | |
13 {% import 'blog/macros.html' as blog with context %} | |
14 {% import 'input/comment.html' as comment with context %} | |
15 | |
16 {% block title %}{{item|adv_format('[{value.widget_value.id}] {value.widget_value.title}') }}{% endblock %} | |
17 | |
18 {% block confirm_message %} | |
19 {% trans %}Your comment has been sent{% endtrans %} | |
20 {% endblock confirm_message %} | |
21 | |
22 {% block body %} | |
23 <div id="{{ item.widget_value['id'] }}" class="view single ticket box"> | |
24 {{ xmlui.generate(item, | |
25 form=false, | |
57
50957f0669b9
ticket/item: URLs in body are now clickable
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
26 filters={'created': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]}, |
50957f0669b9
ticket/item: URLs in body are now clickable
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
27 'updated': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]}, |
50957f0669b9
ticket/item: URLs in body are now clickable
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
28 'body': {'filters': ['urlize'], 'filters_args':[{'nofollow': True, 'rel': 'noopener noreferrer'}]}}, |
56 | 29 )}} |
30 </div> | |
31 {% if comments is defined %} | |
32 <div id="blog_items"> | |
33 {{ blog.show_items(comments|reverse, expanded=true) }} | |
34 </div> | |
35 {% endif %} | |
36 {% if comments_node is defined %} | |
37 <div class="comment_post"> | |
38 {{- comment.comment_or_login(service=comments_service, node=comments_node) -}} | |
39 </div> | |
40 {% endif %} | |
41 {% endblock body %} |