Mercurial > libervia-templates
comparison sat_templates/default/ticket/item.html @ 147:33c7ce833d3f
install: setup.py fix + moved "default" dir in a "sat_templates" dir:
the merge request at https://bugs.goffi.org/mr/view/3 was a good basis, but not fully working ("default" dir was removed), this patch fixes it, and do some improvments:
- moved "default" in "sat_templates" dir, which correspond to the python module, so it can be found easily from python
- added VERSION, and mercurial hash detection, in the same way as for Cagou and backend
- slight modification of classifiers
- replaces tabs coming from MR by spaces
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 02 Jun 2018 17:25:43 +0200 |
parents | default/ticket/item.html@b1e22caab8bc |
children |
comparison
equal
deleted
inserted
replaced
146:7dc00829c32f | 147:33c7ce833d3f |
---|---|
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 | |
9 {% set category_menu = [('tickets', url_tickets_list), | |
10 ('ticket_new', url_tickets_new), | |
11 ] %} | |
12 {% if not embedded %}{% extends 'base/base.html' %}{% endif %} | |
13 {% import 'input/xmlui.html' as xmlui with context %} | |
14 {% import 'blog/macros.html' as blog with context %} | |
15 {% import 'input/textbox.html' as textbox with context %} | |
16 | |
17 {% block title %}{{item|adv_format('[{value.widget_value.id}] {value.widget_value.title}') }}{% endblock %} | |
18 | |
19 {% block confirm_message %} | |
20 {% trans %}Your comment has been sent{% endtrans %} | |
21 {% endblock confirm_message %} | |
22 | |
23 {% block body %} | |
24 {{ icon_defs('pencil') }} | |
25 <div id="{{ item.widget_value['id'] }}" class="view single ticket box"> | |
26 {% if url_ticket_edit is defined %} | |
27 <p class="box__tools"> | |
28 <a href="{{url_ticket_edit}}"> | |
29 {{ icon('pencil', cls='icon--small') }} | |
30 edit | |
31 </a> | |
32 </p> | |
33 {% endif %} | |
34 {{ xmlui.generate(item, | |
35 form=false, | |
36 filters={'created': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]}, | |
37 'updated': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]}, | |
38 'body': {'filters': ['urlize'], 'filters_args':[{'nofollow': True, 'rel': 'noopener noreferrer'}]}}, | |
39 )}} | |
40 </div> | |
41 {% if comments is defined %} | |
42 <div id="blog_items"> | |
43 {{ blog.show_items(comments|reverse, expanded=true) }} | |
44 </div> | |
45 {% endif %} | |
46 {% if comments_node is defined %} | |
47 <div class="comment_post"> | |
48 {{- textbox.comment_or_login(service=comments_service, node=comments_node) -}} | |
49 </div> | |
50 {% endif %} | |
51 {% endblock body %} |