Mercurial > libervia-templates
annotate sat_templates/templates/default/merge-request/item.html @ 402:2bbcb7da56bc default tip
bulma: use Font-Awesome instead of Fontello + start of major redesign:
- Font-Awesome is now used instead of Fontello, following change in Libervia Media.
- This is a beginning of a major redesign of the web templates/web frontend. This
currently breaks a lot of thing.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Oct 2024 22:53:26 +0200 |
parents | 4a03d0a6839b |
children |
rev | line source |
---|---|
69 | 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 | |
138 | 9 {% set category_menu = [('merge-requests', url_tickets_list), |
69 | 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 %} | |
116
da8f1ba9034d
input/comment: renamed "comment" library to "textbox", and made it more generic
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
14 {% import 'input/textbox.html' as textbox with context %} |
69 | 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 %} | |
140
b1e22caab8bc
ticket (item), merge-request (item): added "edit" button when url_ticket_edit is defined
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
23 {{ icon_defs('pencil') }} |
166
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
24 <div class="tab__container"> |
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
25 <div class="tab__header"> |
69 | 26 <ul> |
166
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
27 <li class="tab__btn state_clicked" onclick='tab_select(this, "tab_description")'>{% trans %}Description{% endtrans %}</li> |
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
28 <li class="tab__btn" onclick='tab_select(this, "tab_patches")'>{% trans %}Patches{% endtrans %}</li> |
69 | 29 </ul> |
30 </div> | |
166
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
31 <div class="tab__page state_clicked" id="tab_description"> |
69 | 32 <div id="{{ item.widget_value['id'] }}" class="view single ticket box"> |
140
b1e22caab8bc
ticket (item), merge-request (item): added "edit" button when url_ticket_edit is defined
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
33 {% if url_ticket_edit is defined %} |
b1e22caab8bc
ticket (item), merge-request (item): added "edit" button when url_ticket_edit is defined
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
34 <p class="box__tools"> |
b1e22caab8bc
ticket (item), merge-request (item): added "edit" button when url_ticket_edit is defined
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
35 <a href="{{url_ticket_edit}}"> |
172
4a03d0a6839b
css (styles): various styles improvments:
Goffi <goffi@goffi.org>
parents:
166
diff
changeset
|
36 {{ icon('pencil', cls='icon--text') }} |
140
b1e22caab8bc
ticket (item), merge-request (item): added "edit" button when url_ticket_edit is defined
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
37 edit |
b1e22caab8bc
ticket (item), merge-request (item): added "edit" button when url_ticket_edit is defined
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
38 </a> |
b1e22caab8bc
ticket (item), merge-request (item): added "edit" button when url_ticket_edit is defined
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
39 </p> |
b1e22caab8bc
ticket (item), merge-request (item): added "edit" button when url_ticket_edit is defined
Goffi <goffi@goffi.org>
parents:
138
diff
changeset
|
40 {% endif %} |
69 | 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"> | |
116
da8f1ba9034d
input/comment: renamed "comment" library to "textbox", and made it more generic
Goffi <goffi@goffi.org>
parents:
69
diff
changeset
|
55 {{- textbox.comment_or_login(service=comments_service, node=comments_node) -}} |
69 | 56 </div> |
57 {% endif %} | |
58 </div> | |
166
178f55b825b7
small refactoring/redesign, better BEM integration:
Goffi <goffi@goffi.org>
parents:
164
diff
changeset
|
59 <div class="tab__page" id="tab_patches"> |
69 | 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 %} |