{% load i18n static %} {% if request.is_ajax %} {% if exception %} {{ exception }} {% else %}

{% trans 'Page does not exist' %}

{% blocktrans with pth=request_path %}The page '{{ pth }}' was not found{% endblocktrans %}

{% endif %} {% else %} {% trans 'Page does not exist' %}

404 - {% trans 'Page does not exist' %}

{% if exception %} {{ exception }} {% else %}

{% blocktrans with pth=request_path %}The page '{{ pth }}' was not found{% endblocktrans %}

{% endif %} {% trans 'To main' %}
{% endif %}