Mercurial > libervia-templates
comparison sat_templates/templates/default/merge-request/item.html @ 164:e9f0a4215e46
multi-sites handling (moved templates to "templates" sub-directory) + noscript styles handling.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 10 Sep 2018 08:53:33 +0200 |
parents | sat_templates/default/merge-request/item.html@33c7ce833d3f |
children | 178f55b825b7 |
comparison
equal
deleted
inserted
replaced
163:33f67228686a | 164:e9f0a4215e46 |
---|---|
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 = [('merge-requests', url_tickets_list), | |
10 ('merge-request_new', url_tickets_new)] %} | |
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/textbox.html' as textbox 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 {{ icon_defs('pencil') }} | |
24 <div class="tab_container"> | |
25 <div class="tab_header"> | |
26 <ul> | |
27 <li class="tab_button clicked" onclick='toggle_clicked_class_sel(".tab_button,.tab_page")'>{% trans %}Description{% endtrans %}</li> | |
28 <li class="tab_button" onclick='toggle_clicked_class_sel(".tab_button,.tab_page")'>{% trans %}Patches{% endtrans %}</li> | |
29 </ul> | |
30 </div> | |
31 <div class="tab_page clicked" id="tab_description"> | |
32 <div id="{{ item.widget_value['id'] }}" class="view single ticket box"> | |
33 {% if url_ticket_edit is defined %} | |
34 <p class="box__tools"> | |
35 <a href="{{url_ticket_edit}}"> | |
36 {{ icon('pencil', cls='icon--small') }} | |
37 edit | |
38 </a> | |
39 </p> | |
40 {% endif %} | |
41 {{ xmlui.generate(item, | |
42 form=false, | |
43 filters={'created': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]}, | |
44 'updated': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]}, | |
45 'body': {'filters': ['urlize'], 'filters_args':[{'nofollow': True, 'rel': 'noopener noreferrer'}]}}, | |
46 )}} | |
47 </div> | |
48 {% if comments is defined %} | |
49 <div id="blog_items"> | |
50 {{ blog.show_items(comments|reverse, expanded=true) }} | |
51 </div> | |
52 {% endif %} | |
53 {% if comments_node is defined %} | |
54 <div class="comment_post"> | |
55 {{- textbox.comment_or_login(service=comments_service, node=comments_node) -}} | |
56 </div> | |
57 {% endif %} | |
58 </div> | |
59 <div class="tab_page" id="tab_patches"> | |
60 {% for patch in patches %} | |
61 <div class="patch"> | |
62 <header class="box"> | |
63 <div class="author"><label>{% trans %}author:{% endtrans %} </label>{{patch.author}}</div> | |
64 <p class="commit_msg">{{patch.commit_msg}}</p> | |
65 </header> | |
66 <div class="diff"> | |
67 {{- patch.diff|highlight('diff') -}} | |
68 </div> | |
69 </div> | |
70 {% endfor %} | |
71 </div> | |
72 </div> | |
73 {% endblock body %} |