{% extends 'wiki/base.html' %} {% load i18n %} {% load wiki_extras %} {% block title %} {{ article.title }} - {{block.super}} {% endblock %} {% block extra_head %} {{ block.super}} {% endblock %} {% block content %}
{% if article.id %} {% trans "Edit this article" %} | {% trans "Editing history" %} {% if can_observe %} | {% if is_observing %} {% trans "Stop observing" %} {% else %} {% trans "Observe" %} {% endif %} {% endif %} {% endif %}

{{ article.title }}

{% 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 %}