annotate sat_templates/templates/bulma/invitation/new_item.html @ 325:8c779fb46384

bulma (components/block): interests_grid is more customisable: - new `delete_icon` argument can be set to `false` if delete icon is not desired - the macro can now be called, the caller then get 2 arguments: part to customise and current interest. Part to customise can be: * `header-title`: markup to put in the title * `content`: car content (replaces the default `interest.name`)
author Goffi <goffi@goffi.org>
date Sat, 01 May 2021 18:44:47 +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>