{# vim: set ts=2 et sts=2 sw=2: #} {% extends "base.html" %} {% from "users/includes/macros.html" import login_form %} {% set title = _('Access denied') %} {% set styles = ('users',) %} {% block content %}

{{ title }}

{{ _('You do not have permission to access this page.') }}

{% if not user.is_authenticated() %}

{{ _('Log in') }}

{{ login_form(form, csrf=csrf()) }} {% endif %}
{% endblock %}