view default/components/avatar.html @ 127:27d6453a6209

js (websocket): fixed parsing of new HTML
author Goffi <goffi@goffi.org>
date Sat, 24 Mar 2018 11:11:37 +0100
parents 5992b774a6a4
children 0a0d9a953d98
line wrap: on
line source

{% macro avatar(jid) %}
    {%- if identities is defined -%}
        {%- if identities[jid].avatar_basename is defined %}
            <img class="avatar" src="{{cache_path}}{{identities[jid].avatar_basename}}">
        {% else %}
            <span class="avatar generated">{{author|first|upper}}</span>
        {%- endif -%}
    {%- endif -%}
{% endmacro %}