comparison sat_templates/templates/bulma/chat/reactions.html @ 385:941e4006ab6e

bulma (message): reactions + fixes: - add "reaction" button - fix attachments display - add reaction templates - add reactions to messages - fix "info" messages display
author Goffi <goffi@goffi.org>
date Wed, 22 Nov 2023 15:22:11 +0100
parents
children 38635d393089
comparison
equal deleted inserted replaced
384:4e050f67c079 385:941e4006ab6e
1 <div class="reactions-container is-flex-wrap-wrap">
2 {% for emoji, jids in reactions.items() %}
3 <div
4 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"
5 data-jids='{{jids|tojson}}'
6 >
7 <span class="emoji has-text-weight-semibold">{{ emoji }}</span>
8 <span class="counter">{{ jids|length }}</span>
9 </div>
10 {% endfor %}
11 </div>