view sat_templates/templates/bulma/chat/search_item.html @ 369:1b753e3baf06

bulma (chat): add `search_item` to handle search results in chat selection
author Goffi <goffi@goffi.org>
date Thu, 06 Jul 2023 11:42:16 +0200
parents
children
line wrap: on
line source

{% import 'components/avatar.html' as avatar with context %}
<div class="column is-2-desktop is-4-touch">
    <div class="card x-is-hoverable">
        <a href="{{url}}">
            <div class="card-image is-flex has-items-centered px-1 py-1">
                {{ avatar.avatar(item.entity, "is-64x64") }}
            </div>
            <div class="card-content has-text-centered has-text-shortenable px-1 py-1">
                <span>{{identities[item.entity].nicknames[0] if identities[item.entity].nicknames else item.entity}}</span>
                <div class="search-item__group-tags is-flex is-justify-content-center mt-2">
                    {% if item.groups %}
                    <div class="tags">
                        {% for group in item.groups %}
                        <span class="tag is-rounded is-light">{{ group }}</span>
                        {% endfor %}
                    </div>
                    {% endif %}
                </div>
            </div>
        </a>
    </div>
</div>