diff sat_templates/templates/bulma/chat/reactions_details.html @ 405:5016fb0ff62f default tip

Blog redesign: work in progress redesign of the blog. Some templates have been moved from chat to components to be re-used in other features, like blog here. Blog follows same global design as chat with a left panel to search/open blogs.
author Goffi <goffi@goffi.org>
date Wed, 21 May 2025 15:41:00 +0200
parents 66f98ee041d8
children
line wrap: on
line diff
--- a/sat_templates/templates/bulma/chat/reactions_details.html	Tue May 06 00:37:41 2025 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-{% import 'components/avatar.html' as avatar with context %}
-
-<div class="reacting-users-list">
-    {% for jid in reacting_jids %}
-        <div class="reacting-user-item is-flex is-align-items-center mb-2">
-            {{ avatar.avatar(jid, "is-24x24") }}
-            <span class="reacting-user-nickname ml-2">
-                {{ identities[jid].nicknames[0] if identities[jid].nicknames else jid }}
-            </span>
-        </div>
-    {% endfor %}
-</div>