view sat_templates/default/chat/message.html @ 148:a4b6b8b6fc58

installation (setup.py, i18n): moved i18n directory to sat_templates + removed data_files which is not used anymore
author Goffi <goffi@goffi.org>
date Sun, 03 Jun 2018 09:00:04 +0200
parents 33c7ce833d3f
children 79e9d7bcd96e
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>