{% extends 'base.html' %} {% block extra_head %} {% endblock extra_head %} {% block main %} {% if article.errors %}
{% for error in article.errors %}

{{ error }}

{% endfor %}
{% else %}

{{ article.metadata.title }}

{% if article.metadata.abstract %}

{{ article.metadata.abstract }}

{% endif %} {% if article.images %}
Images {% for image in article.images %}
{{ image.alt }}
{{ image.title or image.alt }} (origine : {{ image.url }})
{% endfor %}
{% endif %}

Exports

{{ form.with_toc }} {{ form.with_ascii }} {{ form.with_link_citations }} {{ form.with_nocite }}
{% if form.version.errors %}
{% for error in form.version.errors %}

{{ error }}

{% endfor %}
{% endif %} {{ form.version.label }} :
{{ form.version }}
{% if form.bibliography_style %}
{{ form.bibliography_style.label }} :
{{ form.bibliography_style(data_action="preview#update") }}

Prévisualisation du rendu bibliographique (3 premiers items) :

{{ bibliography_preview|safe }}
{% endif %} {% if form.formats.choices %}
{% if form.formats.errors %}
{% for error in form.formats.errors %}

{{ error }}

{% endfor %}
{% endif %} {{ form.formats.label }} :
{{ form.formats }}
{% endif %}
{% endif %} {% endblock main %} {% block extra_body %} {% endblock extra_body %}