annotate sat_templates/templates/bulma/invitation/new_item.html @ 411:f7a434581872 default tip

chat: Add forward, rich editing and extra recipients: - There is a new "forward" menu in message. For now, a simple prompt ask for recipient JID. - A new "extra" menu is available next to input field. Inside there are 2 items for now: add extra recipient, and toggle rich edit mode. - Extra recipient option add a field to add an email-like "to", "cc" or "bcc" recipients. - Rich edit let use rich styling such as bold, italic, underline, etc. rel 461
author Goffi <goffi@goffi.org>
date Fri, 04 Jul 2025 17:33:22 +0200
parents a617d37a52e5
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
273
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
1 {% import 'components/avatar.html' as avatar with context %}
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
2
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
3 <div class="dropdown-item media has-items-vcentered" {{ {'data-entity-jid': entity_jid}|xmlattr }}>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
4 {% if identities is defined %}
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
5 <div class="media-left">
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
6 {{ avatar.avatar(entity_jid) }}
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
7 </div>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
8 {% endif %}
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
9 <div class="media-content">
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
10 <div class="content">
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
11 {{identities[entity_jid].nicknames[0] if identities[entity_jid].nicknames else entity_jid}}<br>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
12 <span class="is-italic is-size-7 has-text-grey-light">{{entity_jid}}</span>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
13 </div>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
14 </div>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
15 <div class="media-right">
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
16 <button class="button click_to_ok">
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
17 <span>{% trans %}invite{% endtrans %}</span>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
18 <span class="icon is-small">
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
19 <i class="icon-plus-circled"></i>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
20 </span>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
21 </button>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
22 </div>
a617d37a52e5 bulma (invitation): template for new item
Goffi <goffi@goffi.org>
parents:
diff changeset
23 </div>