{% extends "base.html" %} {% block title %}Permission denied{% endblock %} {% block navbar %} Home | Permission denied {% if not user.is_anonymous %} Logout {% endif %} {% endblock %} {% block content %}
Sorry, you do not have permission to view this page.
If you think you should
have permission, please contact the administrator.
You are not logged in.
{% else %}You are currently logged in as {% if user.get_full_name %}{{user.get_full_name}}{% else %}{{user.username}}{% endif %}.
{% endif %} {% endblock %}