comparison default/merge-request/item.html @ 69:339f4011ed9b

merge-request: first draft: template for viewing a merge request (comments + patches) + a text explaining how to use jp to create a new one (new merge requests from inside Libervia is not handled yet).
author Goffi <goffi@goffi.org>
date Fri, 01 Dec 2017 00:46:45 +0100
parents
children da8f1ba9034d
comparison
equal deleted inserted replaced
68:46109efcf671 69:339f4011ed9b
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_list', 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/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 class="tab_container">
24 <div class="tab_header">
25 <ul>
26 <li class="tab_button clicked" onclick='toggle_clicked_class_sel(".tab_button,.tab_page")'>{% trans %}Description{% endtrans %}</li>
27 <li class="tab_button" onclick='toggle_clicked_class_sel(".tab_button,.tab_page")'>{% trans %}Patches{% endtrans %}</li>
28 </ul>
29 </div>
30 <div class="tab_page clicked" id="tab_description">
31 <div id="{{ item.widget_value['id'] }}" class="view single ticket box">
32 {{ xmlui.generate(item,
33 form=false,
34 filters={'created': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]},
35 'updated': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]},
36 'body': {'filters': ['urlize'], 'filters_args':[{'nofollow': True, 'rel': 'noopener noreferrer'}]}},
37 )}}
38 </div>
39 {% if comments is defined %}
40 <div id="blog_items">
41 {{ blog.show_items(comments|reverse, expanded=true) }}
42 </div>
43 {% endif %}
44 {% if comments_node is defined %}
45 <div class="comment_post">
46 {{- comment.comment_or_login(service=comments_service, node=comments_node) -}}
47 </div>
48 {% endif %}
49 </div>
50 <div class="tab_page" id="tab_patches">
51 {% for patch in patches %}
52 <div class="patch">
53 <header class="box">
54 <div class="author"><label>{% trans %}author:{% endtrans %} </label>{{patch.author}}</div>
55 <p class="commit_msg">{{patch.commit_msg}}</p>
56 </header>
57 <div class="diff">
58 {{- patch.diff|highlight('diff') -}}
59 </div>
60 </div>
61 {% endfor %}
62 </div>
63 </div>
64 {% endblock body %}