view sat_templates/templates/bulma/chat/editions.html @ 390:38635d393089

bulma (chat/reactions): use a special style for reactions made by the user.
author Goffi <goffi@goffi.org>
date Wed, 13 Dec 2023 22:01:46 +0100
parents e63fb06052ae
children
line wrap: on
line source

<ul>
    {% for edition in editions %}
        <li class="m-2">
            <span class="tag is-info is-light">
                {{ edition.timestamp | date_fmt(fmt="auto_day", auto_new_fmt="relative") }}
            </span>
            <span class="ml-2">{{ edition.text }}</span>
        </li>
    {% endfor %}
</ul>