{% extends 'index.html' %} {% block content %}

{{error|default("You're not authorized for this")}}

{%if error_details%}

{{error_details}}

{%else%}

The page you're trying to access is protected.

{%endif%} {%if auth.is_logged_in%}

User {{auth.username}} is not authorized for this. Please log into a different account to have access to it.

{%else%}

Please log into an account that has access to it.

{%endif%}
{% endblock %}