{% extends "core/base.html" %} {% load i18n material_form %} {% block browser_title %}{% blocktrans %}Confirm Logout{% endblocktrans %}{% endblock %} {% block content %}
{% if not error %}
{% csrf_token %} {% if application and application.icon %}
{{ application.name }}
{% endif %}
{% if application %} {% blocktrans with name=application.name %}Confirm Logout requested by {{ name }}{% endblocktrans %} {% else %} {% trans "Confirm Logout" %} {% endif %}
{% for field in form %} {% if field.is_hidden %} {{ field }} {% endif %} {% endfor %} {{ form.errors }} {{ form.non_field_errors }}
{% else %}
{% trans "Error" %}: {{ error.error }}

{{ error.description }}

Please verify if the application is configured correctly or contact one of your site administrators:

{% include "core/partials/admins_list.html" %}
{% endif %} {% endblock %}