{% extends 'wiki/base.html' %} {% load i18n %} {% load wlimages %} {% block title %} {% trans "Editing article" %} - {{ block.super }} {% endblock %} {% block content %} {% if not new_article %}
{% trans "Back to article" %} | {% trans "Editing history" %}
{% endif %}

{% trans "Edit" %}

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 }} {{ form.user_ip }}
{% ifequal new_article 0 %} {% endifequal %}
{% if new_article %}

Images

You must save the article once before you can attach images to it {% else %} {% if images.count %}

Images

Images attached to this article: {% for img in images %} {% endfor %}
Image Title Image Code to include
{{ img.name }} ![{{img.name}}]({{ img.url }})
{%endif%} {% get_upload_form as iform %}
{{ iform.as_p }}
{% endif%} {% endblock %}