annotate default/merge-request/create.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 |
339f4011ed9b |
children |
4f27ce980ced |
rev |
line source |
69
|
1 {# creata a new ticket #} |
|
2 |
|
3 {% set category_menu = [('merge-requests_list', url_tickets_list)] %} |
|
4 {% extends 'base/base.html' %} |
|
5 {% block body %} |
|
6 <div class="box message_info"> |
|
7 <p>{% trans %}It is not yet possible to create a merge request from inside Libervia, please use <pre>jp merge-request set</pre> for now. Merge requests welcome ;){% endtrans %}</p> |
|
8 </div> |
|
9 {% endblock body %} |