view sat_templates/templates/default/chat/message.html @ 215:b2f0f81b2cd2

base: if `atom_url` is defined, a "subscribe" link is added to footer: also added `text--clickable` class to remove decorations and have a different background on hover. fix 279
author Goffi <goffi@goffi.org>
date Fri, 19 Jul 2019 21:22:40 +0200
parents e9f0a4215e46
children 3195484abd82
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_, "avatar--float-left") }}
        <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>