Mercurial > libervia-templates
view sat_templates/templates/default/components/avatar.html @ 317:ae903ca0ed66
bulma (input/field): color can now be specified for `submit` button
author | Goffi <goffi@goffi.org> |
---|---|
date | Thu, 29 Apr 2021 15:52:34 +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 %}