view sat_templates/templates/default/components/avatar.html @ 329:6a26c8a43d10

bulma (chat): fix chat: those change are done to have a minimal chat working, but it's really basic. A full-featured chat should come in a future version.
author Goffi <goffi@goffi.org>
date Fri, 07 May 2021 15:38:10 +0200
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 %}