{% extends "wiki/base.html" %} {% load i18n %} {% load wiki_tags %} {% load group_tags %} {% load markup_tags %} {% load extra_tagging_tags %} {% block head_title %}Wiki for {{ group.name }} - {{ article.title }} {% endblock %} {% block body %} {% if allow_write or article.id %}

{% trans "Actions" %}

{% if article.id %} {% if allow_write %}
  • {% trans "Edit this article" %}
  • {% endif %}
  • {% trans "Editing history" %}
  • {% else %}
  • {% trans "Create this article" %}
  • {% endif %}
    {% endif %} {% wiki_title group %}

    {{ article.title }}

    {% if not article.id and allow_write %}

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

    {% endif %} {{ article.content|apply_markup:article.markup|wiki_links }} {% show_tags_for article %} {# @@@ this should be done via inclusion tag provided by notification #} {% if article.id and can_observe %} {% if is_observing %}
    {% csrf_token %}
    {% else %}
    {% csrf_token %}
    {% endif %} {% endif %} {% endblock %}