Mercurial > libervia-templates
annotate default/ticket/item.html @ 85:05b500bd6235
chat: chat implementation, first draft:
this chat use the new dynamic pages feature. Updates are pushed directly by server.
Identities are used to retrieve avatar, and first letter of nickname is used to generate an avatar is none is found (temporary, a more elaborate avatar generation should follow in the future).
Scroll is done automatically when new messages arrive, except if scroll is not at the end, as it probably means that user is checking history.
User can resize text area and use [shift] + [enter] to enter multi-line messages. History will then scroll to bottom after message has been sent.
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 03 Jan 2018 01:12:16 +0100 |
parents | 18d00a8afc4d |
children | da8f1ba9034d |
rev | line source |
---|---|
56 | 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 | |
72 | 9 {% set category_menu = [('tickets_list', url_tickets_list), |
66 | 10 ('ticket_new', url_tickets_new)] %} |
56 | 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 id="{{ item.widget_value['id'] }}" class="view single ticket box"> | |
66 | 24 {{ xmlui.generate(item, |
56 | 25 form=false, |
57
50957f0669b9
ticket/item: URLs in body are now clickable
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
26 filters={'created': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]}, |
50957f0669b9
ticket/item: URLs in body are now clickable
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
27 'updated': {'filters': ['date_fmt'], 'filters_args':[{'fmt': 'short'}]}, |
50957f0669b9
ticket/item: URLs in body are now clickable
Goffi <goffi@goffi.org>
parents:
56
diff
changeset
|
28 'body': {'filters': ['urlize'], 'filters_args':[{'nofollow': True, 'rel': 'noopener noreferrer'}]}}, |
56 | 29 )}} |
30 </div> | |
31 {% if comments is defined %} | |
32 <div id="blog_items"> | |
33 {{ blog.show_items(comments|reverse, expanded=true) }} | |
34 </div> | |
35 {% endif %} | |
36 {% if comments_node is defined %} | |
37 <div class="comment_post"> | |
38 {{- comment.comment_or_login(service=comments_service, node=comments_node) -}} | |
39 </div> | |
40 {% endif %} | |
41 {% endblock body %} |