Mercurial > libervia-templates
comparison sat_templates/templates/default/chat/message.html @ 228:3195484abd82
updated identities/avatar use, following backend changes
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 19 Apr 2020 22:48:57 +0200 |
parents | e9f0a4215e46 |
children |
comparison
equal
deleted
inserted
replaced
227:f8f9019425c3 | 228:3195484abd82 |
---|---|
1 {% import 'components/avatar.html' as avatar with context %} | 1 {% import 'components/avatar.html' as avatar with context %} |
2 | 2 |
3 <p id="{{msg.id}}" class="msg_{{msg.type}} {{'own_msg' if msg.from_ == own_jid.full()}}"> | 3 <p id="{{msg.id}}" class="msg_{{msg.type}} {{'own_msg' if msg.from_ == own_jid.full()}}"> |
4 {%- if msg.type != C.MESS_TYPE_INFO %} | 4 {%- if msg.type != C.MESS_TYPE_INFO %} |
5 {%- set author = identities[msg.from_].nick | default(msg.from_) -%} | 5 {%- set author = identities[msg.from_].nicknames[0] | default(msg.from_) -%} |
6 {{ avatar.avatar(msg.from_, "avatar--float-left") }} | 6 {{ avatar.avatar(msg.from_, "avatar--float-left") }} |
7 <span class="msg_header"> | 7 <span class="msg_header"> |
8 <span class="author">{{author}}</span> | 8 <span class="author">{{author}}</span> |
9 <span class="date">{{msg.timestamp|date_fmt('auto_day')}}</span> | 9 <span class="date">{{msg.timestamp|date_fmt('auto_day')}}</span> |
10 </span> | 10 </span> |