{% extends "dictionary/base.html" %} {% load i18n %} {% block title %}{% trans "page not found" context "titleblock" %}{% endblock %} {% block content %} {% url "home" as home_url %} {% url "topic_list" "search" as search_url %} {% autoescape off %} {% blocktrans asvar navigation_message trimmed %} you may return to home page or keep looking using advanced search. {% endblocktrans %} {% if request.resolver_match.view_name == "entry-permalink" %}
{% blocktrans trimmed with entry_id=request.resolver_match.kwargs.entry_id %} entry with identity (#{{ entry_id }}) was not found. it might have been deleted and could be lurking in the limbo now, who knows? {{ navigation_message }} {% endblocktrans %}
{% else %}{% blocktrans trimmed %} the page you requested was not found. {{ navigation_message }} {% endblocktrans %}
{% endif %} {% endautoescape %} {% endblock %}