{% extends 'wiki/base.html' %} {% load i18n %} {% load wlimages_extras %} {% load static %} {% block title %} {% trans "Editing" %} {{ article.title }} - {{ block.super }} {% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content_header %}

{% trans "Editing" %} {{ article.title }}

{% endblock %} {# add the wanted classes to the tabs #} {% block class_wiki_edit %}class="hidden"{% endblock %} {% block class_wiki_hist_atom %}class="hidden"{% endblock %} {% block content_main %}

You can edit the wiki pages contents using the syntax described on the WikiSyntax.

{{ form.title.errors }}{{ form.title }}
{{ form.content.errors }}{{ form.content }}
{{ form.summary.errors }}{{ form.summary }}
{{ form.comment.errors }}{{ form.comment }}
{{ form.content_type }} {{ form.object_id }} {{ form.action }}
{% ifequal new_article 0 %} {% endifequal %}
{% csrf_token %}

Images

{% if new_article %} You must save the article once before you can attach images to it. {% else %} {% if images.count %} Images attached to this article: {% endif %} {% include 'wlimages/inlines/image_list.html' %} {% get_upload_form as iform %}
{{ iform.as_p }}
{% csrf_token %}
{% endif%}
{% endblock %}