{% extends "bot_base.html" %} {% block content %}

{{exc.status}}: {{exc}}

{% if exc.status == 401 %}

You must be logged in to view this resource.

Please login.

{% elif exc.status == 403 %} {% if 'permission_required' in request %} You must be a member of @{{request['permission_required']}} to access this resource. {% else %} You lack permissions to view this resource. {% endif %} {% elif exc.status == 404 %} Searched exhaustively, but no page "{{request.path}}" could be found anywhere. {% endif %} {% endblock %}