view sat_templates/templates/bulma/components/search_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 e7152fc8a81f
children
line wrap: on
line source

{% import 'components/avatar.html' as avatar with context %}

<div class="column is-2-desktop is-6-touch">
    <div class="card x-is-hoverable">
        {% if multiple_selection %}
            <div class="checkbox-container pl-1 pt-1">
                <input type="checkbox" class="search-item__checkbox">
            </div>
        {% endif %}
        <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>
                {% if not options.no_group %}
                    <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>
                {% endif %}
            </div>
        </a>
        {% block call %}{% endblock %}
    </div>
</div>