Mercurial > libervia-templates
comparison sat_templates/default/chat/message.html @ 157:79e9d7bcd96e
css: use inline-flex only for avatar--generated + added avatar--float-left
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 02 Jul 2018 21:35:00 +0200 |
parents | 33c7ce833d3f |
children |
comparison
equal
deleted
inserted
replaced
156:b01b58d06894 | 157:79e9d7bcd96e |
---|---|
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_].nick | default(msg.from_) -%} |
6 {{ avatar.avatar(msg.from_) }} | 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> |
11 {% endif -%} | 11 {% endif -%} |