view sat_templates/templates/default/chat/message.html @ 348:789ebf39b2d8

i18n: Translated using Weblate (French) Currently translated at 100.0% (213 of 213 strings) Translation: Libervia/Templates Translate-URL: https://salut-a-toi.org/weblate/projects/libervia/templates/fr/
author Goffi <tmp-weblate_goffi.org@goffi.org>
date Thu, 18 Nov 2021 16:25:27 +0000
parents 3195484abd82
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_].nicknames[0] | 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>