Mercurial > libervia-templates
annotate default/ticket/item.html @ 72:18d00a8afc4d
ticket(item): fixed menus
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 04 Dec 2017 00:48:24 +0100 |
parents | 9834106678da |
children | da8f1ba9034d |
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 | |
72 | 9 {% set category_menu = [('tickets_list', url_tickets_list), |
66 | 10 ('ticket_new', url_tickets_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"> | |
66 | 24 {{ xmlui.generate(item, |
56 | 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 %} |