view sat_templates/templates/bulma/chat/occupant_item.html @ 403:65c53ec5e777

Bulma: complete redesign: This is a WIP full redesign of the whole web UI. Only chat is usable at the moment, many things are broken. The design uses the new Bulma v1+, has a look closer to industry standards, paves the way for a dark theme, and should be easy to use. It's a basis for coming features such as UI/UX for threads. rel 457
author Goffi <goffi@goffi.org>
date Fri, 11 Apr 2025 21:32:05 +0200
parents
children
line wrap: on
line source

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

<div class="is-flex is-align-items-center">
    <div class="mr-2">
        {{ avatar.avatar(item.entity) }}
    </div>
    <div class="is-flex-grow-1">
        <p class="mb-0">{{nick}}</p>
    </div>
</div>