{% extends 'wiki/base.html' %} {% load i18n %} {% load wlimages %} {% block title %} {% trans "Editing article" %} - {{ block.super }} {% endblock %} {% block content %}

{% trans "Edit" %}

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

{{ form.content_type }} {{ form.object_id }} {{ form.action }} {{ form.user_ip }}
{{ form.title.errors }}{{ form.title }}
{{ form.content.errors }}{{ form.content }}
{{ form.summary.errors }}{{ form.summary }}
{{ form.comment.errors }}{{ form.comment }}
{% 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 %}