view default/chat/message.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 05b500bd6235
children
line wrap: on
line source

{% import 'components/avatar.html' as avatar with context %}

<p id="{{msg.id}}" class="msg_{{msg.type}} {{'own_msg' if msg.from_ == own_jid.full()}}">
    {%- if msg.type != C.MESS_TYPE_INFO %}
        {%- set author = identities[msg.from_].nick | default(msg.from_) -%}
        {{ avatar.avatar(msg.from_) }}
        <span class="msg_header">
            <span class="author">{{author}}</span>
            <span class="date">{{msg.timestamp|date_fmt('auto_day')}}</span>
        </span>
    {% endif -%}
    <span class="msg_body">
        {{- msg.html or (msg.text|urlize(nofollow=true, target="_blank")) -}}
    </span>
</p>