Mercurial > libervia-templates
annotate sat_templates/templates/bulma/components/avatar.html @ 346:a9cc406ef7c6
i18n: Update translation files
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate.
Translation: Libervia/templates
Translate-URL: https://salut-a-toi.org/weblate/projects/libervia/templates/
author | Weblate <noreply@weblate.org> |
---|---|
date | Wed, 16 Jun 2021 14:33:01 +0000 |
parents | 878e7aee0e4a |
children | 9847e6dbeefa |
rev | line source |
---|---|
230 | 1 {% macro avatar(jid, class="is-48x48") %} |
2 {%- if identities is defined -%} | |
263
878e7aee0e4a
bulma (components/avatar): updated avatar data use following change in Libervia
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
3 {% set identity = identities.get(jid) %} |
878e7aee0e4a
bulma (components/avatar): updated avatar data use following change in Libervia
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
4 {%- if identity.avatar %} |
878e7aee0e4a
bulma (components/avatar): updated avatar data use following change in Libervia
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
5 <div class="is-avatar image {{class}}"> |
878e7aee0e4a
bulma (components/avatar): updated avatar data use following change in Libervia
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
6 <img src="/cache/common/{{identity.avatar.filename}}"> |
878e7aee0e4a
bulma (components/avatar): updated avatar data use following change in Libervia
Goffi <goffi@goffi.org>
parents:
233
diff
changeset
|
7 </div> |
230 | 8 {% else %} |
9 {% set nick = identity.nicknames[0] if identity.nicknames else jid %} | |
10 <span class="is-avatar image {{class}} is-flex has-items-centered has-text-weight-bold is-size-3 {{class}}">{{nick|first|upper}}</span> | |
11 {%- endif -%} | |
12 {%- endif -%} | |
13 {% endmacro %} |