view sat_templates/templates/bulma/login/logged.html @ 289:f1a39607d6a5

bulma (base/base.html): `full_screen_body` parameter + body_wrapper: - if `full_screen_body` is set in template, the `body--fullscreen` class will be added to `<body>` element. It will then be a flexbox container (in columns), and displayed on the whole viewport. - new `body_wrapper` block, if a page needs to replace the `#body` container.
author Goffi <goffi@goffi.org>
date Mon, 28 Sep 2020 17:25:26 +0200
parents 0e69b5843c2f
children 6895500a42d6
line wrap: on
line source

{% set post_confirm_message=_("You have been logged correctly") %}
{% if not embedded %}{% extends 'base/base.html' %}{% endif %}
{% import 'input/form.html' as form with context %}
{% import 'input/field.html' as field with context %}

{% block title %}{{C.APP_NAME}}{% endblock %}

{% block confirm_message %}
    {% trans %}You have been logged correctly{% endtrans %}
{% endblock confirm_message %}

{% block body %}
    <section class="section" id='logged'>
        <div class='message'>
            <div class="message-body">
                {% if guest_session %}
                    <p>{% trans %}You are logged as a guest{% endtrans %}</p>
                {% else %}
                    <p>{% trans name='<span class="logged_profile">'|safe + profile + '</span>'|safe %}You are logged under the account {{name}} {% endtrans %}</p>
                {% endif %}
                <p>{% trans session_started='<span class="logged_time">'|safe + session_started|date_fmt('relative') + '</span>'|safe %}You logged {{session_started}}{% endtrans %}</p>
            </div>
        </div>
        {% call form.form() %}
        {{ field.meta('type', 'disconnect') }}
        {{ field.submit(_("Disconnect")) }}
        {% endcall %}
    </section>
{% endblock body %}