{% extends 'wiki/base.html' %} {% load i18n %} {% load wiki_extras %} {% block title %} {{ article.title }} - {{block.super}} {% endblock %} {% block extra_head %} {{ block.super}} {% endblock %} {% block content_header %}

{{ article.title }}

{% endblock %} {# add the wanted classes to the tabs #} {% block class_wiki_back %}class="hidden"{% endblock %} {% block class_wiki_hist_atom %}class="hidden"{% endblock %} {% block content_main %} {% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %}
{% if not article.id %}

{% trans "This article does not exist." %} {% trans "Create it now?" %}

{% endif %} {% if redirected_from %}

({% trans "Redirected from" %} {{ redirected_from }})

{% endif %} {% if revision %}

({% trans "Viewing revision " %} {{ revision }})

{% endif %} {% render_content article %}
{% endblock %}