view sat_templates/templates/bulma/chat/reactions.html @ 389:2eaea9a9c234

bulma (chat/message): fix setting of `own_mess` class.
author Goffi <goffi@goffi.org>
date Wed, 13 Dec 2023 22:01:20 +0100
parents 941e4006ab6e
children 38635d393089
line wrap: on
line source

<div class="reactions-container is-flex-wrap-wrap">
    {% for emoji, jids in reactions.items() %}
        <div
                class="reaction box is-shadowless is-inline-flex is-align-items-center my-1 ml-0 mr-2 px-2 py-1 is-size-6 has-background-light has-border is-not-selectable"
                data-jids='{{jids|tojson}}'
                >
            <span class="emoji has-text-weight-semibold">{{ emoji }}</span>
            <span class="counter">{{ jids|length }}</span>
        </div>
    {% endfor %}
</div>