annotate sat_templates/templates/bulma/invitation/new_item.html @ 413:0190a0d32909 default tip

Forum: Major redesign of forums: Forums have been redesigned. They follow the new general design with 2 or 3 panels, allowing to have directly a forum if one is found/set up, and a panel on the left to search/discover other ones. Categories have been rewritten to be usable with pubsub relationships, a XEP-0277 type node is used for topics, and each item has a comments node for the threads. The thread view is set in `forum/show_messages.html` template. It has a header with a search box and a button to (un)subscribe. Items are displayed with the same macros as for the blog items. Below a room is set for editor, tags and attachments. rel 463
author Goffi <goffi@goffi.org>
date Fri, 05 Sep 2025 21:54:09 +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>