view sat_templates/templates/bulma/call/call_status.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 16dc76f58782
children
line wrap: on
line source

{% if status == none %}
    <div class="call_status notification is-info column my-0">
    </div>
{% elif status == "dialing" %}
    <div class="call_status notification is-info column my-0">
        <p>{% trans %}Calling {{name}}{% endtrans %}</p>
    </div>
{% elif status == "ringing" %}
    <div class="call_status notification is-info column my-0">
        <p>{% trans %}{{name}}'s device is ringing…{% endtrans %}</p>
    </div>
{% elif status == "in-call" %}
    <div class="call_status notification is-success column my-0">
        <p>{% trans %}In call with {{name}}.{% endtrans %}</p>
    </div>
{% elif status == "on-hold" %}
    <div class="call_status notification is-warning column my-0">
        <p>{% trans %}Call with {{name}} is on hold…{% endtrans %}</p>
    </div>
{% elif status == "connecting" %}
    <div class="call_status notification is-info column my-0">
        <p>{% trans %}Connecting with {{name}}{% endtrans %}</p>
    </div>
{% elif status == "connection-lost" %}
    <div class="call_status notification is-danger column my-0">
        <p>{% trans %}Connection with {{name}} lost.{% endtrans %}</p>
    </div>
{% elif status == "reconnecting" %}
    <div class="call_status notification is-warning column my-0">
        <p>{% trans %}Reconnecting to {{name}}{% endtrans %}</p>
    </div>
{% endif %}