Mercurial > libervia-templates
view sat_templates/templates/default/components/avatar.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 | 1215a6e2385f |
children |
line wrap: on
line source
{% macro avatar(jid, class) %} {%- if identities is defined -%} {%- if identities[jid].avatar_basename %} <img class="avatar {{class}}" src="/cache/common/{{identities[jid].avatar_basename}}"> {% else %} <span class="avatar avatar--generated {{class}}"><span class="avatar__content">{{identities[jid].nicknames[0]|first|upper}}</span></span> {%- endif -%} {%- endif -%} {% endmacro %}