comparison sat_templates/default/merge-request/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/merge-request/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 = [('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 %}