view sat_templates/templates/bulma/call/search_item.html @ 413:0190a0d32909 default tip

Forum: Major redesign of forums: Forums have been redesigned. They follow the new general design with 2 or 3 panels, allowing to have directly a forum if one is found/set up, and a panel on the left to search/discover other ones. Categories have been rewritten to be usable with pubsub relationships, a XEP-0277 type node is used for topics, and each item has a comments node for the threads. The thread view is set in `forum/show_messages.html` template. It has a header with a search box and a button to (un)subscribe. Items are displayed with the same macros as for the blog items. Below a room is set for editor, tags and attachments. rel 463
author Goffi <goffi@goffi.org>
date Fri, 05 Sep 2025 21:54:09 +0200
parents 5072e4a4e261
children
line wrap: on
line source

{% extends 'components/search_item.html' %}

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

{% block call %}
<div class="level is-mobile">
    <div class="level-right">
        <div class="level-item">
            <div class="search-item-extra dropdown is-right">
                <div class="dropdown-trigger">
                    <button class="button is-white is-small" aria-haspopup="true" aria-controls="dropdown-menu">
                        <span class="icon">
                            <i class="icon-dot-3-vert"></i>
                        </span>
                    </button>
                </div>
                <div class="dropdown-menu" role="menu">

                    <div class="dropdown-content">
                        <!-- Video Call Option -->
                        <a class="click-to-video dropdown-item">
                            <span class="icon">
                                <i class="icon-videocam"></i>
                            </span>
                            {% trans %}Video Call{% endtrans %}
                        </a>

                        <!-- Audio Call Option -->
                        <a class="click-to-audio dropdown-item">
                            <span class="icon">
                                <i class="icon-phone"></i>
                            </span>
                            {% trans %}Audio Call{% endtrans %}
                        </a>

                        <!-- Remote Control Option -->
                        <a class="click-to-remote-control dropdown-item">
                            <span class="icon">
                                <i class="icon-keyboard"></i>
                            </span>
                            {% trans %}Remote Control{% endtrans %}
                        </a>
                    </div>

                </div>
            </div>
        </div>
    </div>
</div>
{% endblock %}