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

{{error|default("User Permission Error")}}

{%if error_details%}

{{error_details}}

{%else%}

You don't have permission for this.

{%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 %}