view sat_templates/templates/bulma/invitation/manager.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 60979d67eae7
children
line wrap: on
line source

{% import 'input/form.html' as form with context %}
{% import 'input/field.html' as field with context %}
{% import 'input/textbox.html' as textbox with context %}
{% import 'dialogs/macros.html' as dialog with context %}
<div class="wrapper">
    <div class="panel_wrapper click_to_close">
        <div class="invitation_manager_side_panel">
            <section class="section">
                <div class="message is-info">
                    <div class="message-body">
                        {% trans %}in this panel, you can manage people who can access this page, and send invitations{% endtrans %}
                    </div>
                </div>
            </section>
            <section class="section">
                <div id="affiliations">
                    <h4 class="title is-4">{% trans %}people who can access this page{% endtrans %}</h4>
                </div>
                {% call form.form(id="invitation_form", class="mt-4") %}
                    {{ textbox.head(event_service, event_node, 'event') }}
                    {{ field.meta('event_id', event_id) }}
                    {% call dialog.search_dialog(id="invitation_contact_search", class="is-block") %}
                        {{ field.text("contact", placeholder=_("name or identifier of a person to invite"), autocomplete="off", icon_left="person") }}
                    {% endcall %}
                    <button id="invite_email" class="button mt-6">
                        <i class="icon-mail"></i> {% trans %}invite by email{% endtrans %}
                    </button>
                {% endcall %}
            </section>
        </div>
    </div>
</div>