{% if code == 403 %}
{{ _("Access unauthorized") }}.
{% if current_user.is_authenticated() %}
{{ _("You are not allowed to access this page. Forget it, there's nothing you can do.") }}
{% else %}
{{ _("You need to login first:") }}
{% endif %}
{% elif code == 404 %}
{{ _("Page not found.") }}
{{ _("Please check the address or tell us where you clicked.") }}
{% endif %}