{% extends EXCEPTION_BASE_TEMPLATE %} {% block icon %} {% endblock icon %} {% block title %} {% firstof caption 'Access denied' %} {% endblock title %} {% block caption %} {% firstof caption 'Access denied' %} {% endblock caption %} {% block message %} {{ block.super }} {% if not request.user.is_authenticated %}
If you have an account, you could login and try again.
{% endif %} {% endblock message %} {% block actions %} {{ block.super }} {% if not request.user.is_authenticated and LOGIN_URL %} Login {% endif %} {% endblock actions %}