{% extends "wiki/base.html" %} {% load wiki_tags i18n %} {% load url from future %} {% block wiki_pagetitle %}{% if article %}{{ article.current_revision.title }}{% else %}{% trans "Error" %}{% endif %}{% endblock %} {% block wiki_breadcrumbs %} {% include "wiki/includes/breadcrumbs.html" %} {% endblock %} {% block wiki_contents %} {% if error_type == "ancestors_missing" %}

{% trans "Not found" %}

{% trans "This article was not found, and neither was its parent article." %}

{% trans "Start page" %}

{% else %}

{% trans "Error" %}

{% if not error_msg %}

{% trans "There was some sort of error accessing this page. Sorry!" %}

{% else %}

{{ error_msg }}

{% endif %}
{% if article %}

{% trans "Back to" %} {{ article.current_revision.title }}

{% endif %} {% endif %} {% endblock %}