Mercurial > libervia-templates
comparison sat_templates/templates/default/chat/message.html @ 164:e9f0a4215e46
multi-sites handling (moved templates to "templates" sub-directory) + noscript styles handling.
author | Goffi <goffi@goffi.org> |
---|---|
date | Mon, 10 Sep 2018 08:53:33 +0200 |
parents | sat_templates/default/chat/message.html@79e9d7bcd96e |
children | 3195484abd82 |
comparison
equal
deleted
inserted
replaced
163:33f67228686a | 164:e9f0a4215e46 |
---|---|
1 {% import 'components/avatar.html' as avatar with context %} | |
2 | |
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 %} | |
5 {%- set author = identities[msg.from_].nick | default(msg.from_) -%} | |
6 {{ avatar.avatar(msg.from_, "avatar--float-left") }} | |
7 <span class="msg_header"> | |
8 <span class="author">{{author}}</span> | |
9 <span class="date">{{msg.timestamp|date_fmt('auto_day')}}</span> | |
10 </span> | |
11 {% endif -%} | |
12 <span class="msg_body"> | |
13 {{- msg.html or (msg.text|urlize(nofollow=true, target="_blank")) -}} | |
14 </span> | |
15 </p> |