Mercurial > libervia-templates
diff default/components/avatar.html @ 117:5992b774a6a4
chat/message, input/avatar: moved avatar template in a dedicated macro.
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 30 Jan 2018 07:47:26 +0100 |
parents | |
children | 0a0d9a953d98 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/default/components/avatar.html Tue Jan 30 07:47:26 2018 +0100 @@ -0,0 +1,9 @@ +{% 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 %}