Mercurial > libervia-templates
annotate sat_templates/templates/bulma/components/search_item.html @ 396:9847e6dbeefa
bulma (call): add group call related templates.
rel: 430
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 15 May 2024 17:39:47 +0200 |
parents | 941e4006ab6e |
children | e7152fc8a81f |
rev | line source |
---|---|
374
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
1 <div class="column is-2-desktop is-6-touch"> |
369
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
2 <div class="card x-is-hoverable"> |
396
9847e6dbeefa
bulma (call): add group call related templates.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
3 {% if multiple_selection %} |
9847e6dbeefa
bulma (call): add group call related templates.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
4 <div class="checkbox-container pl-1 pt-1"> |
9847e6dbeefa
bulma (call): add group call related templates.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
5 <input type="checkbox" class="search-item__checkbox"> |
9847e6dbeefa
bulma (call): add group call related templates.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
6 </div> |
9847e6dbeefa
bulma (call): add group call related templates.
Goffi <goffi@goffi.org>
parents:
385
diff
changeset
|
7 {% endif %} |
369
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
8 <a href="{{url}}"> |
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
9 <div class="card-image is-flex has-items-centered px-1 py-1"> |
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
10 {{ avatar.avatar(item.entity, "is-64x64") }} |
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
11 </div> |
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
12 <div class="card-content has-text-centered has-text-shortenable px-1 py-1"> |
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
13 <span>{{identities[item.entity].nicknames[0] if identities[item.entity].nicknames else item.entity}}</span> |
374
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
14 {% if not options.no_group %} |
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
15 <div class="search-item__group-tags is-flex is-justify-content-center mt-2"> |
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
16 {% if item.groups %} |
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
17 <div class="tags"> |
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
18 {% for group in item.groups %} |
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
19 <span class="tag is-rounded is-light">{{ group }}</span> |
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
20 {% endfor %} |
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
21 </div> |
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
22 {% endif %} |
369
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
23 </div> |
374
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
24 {% endif %} |
369
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
25 </div> |
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
26 </a> |
374
5646df8bd391
bulma (call): calling mode improvments:
Goffi <goffi@goffi.org>
parents:
370
diff
changeset
|
27 {% block call %}{% endblock %} |
369
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
28 </div> |
1b753e3baf06
bulma (chat): add `search_item` to handle search results in chat selection
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
29 </div> |