{% extends "wiki/base.html" %} {% from "includes/error_list.html" import errorlist %} {% from "includes/common_macros.html" import content_editor %} {% set title = _('Create a New {title}')|fe(title=('Template' if is_template else 'Article')) %} {% block title %}{{ page_title(title) }}{% endblock %} {% set classes = 'new' %} {% block bodyclass %}new{% if is_template %} is-template{% endif %}{% endblock %} {% block site_css %} {{ super() }} {{ css('wiki-edit') }} {{ css('jquery-ui') }} {% endblock %} {% block content %}
{{ errorlist(document_form) }} {{ errorlist(revision_form) }}
{{ csrf() }}
{% include 'wiki/includes/page_buttons.html' %} {{ document_form.category|safe }}

{{ ('Create a ') }}{{ _('New Document') }}

{% include 'wiki/includes/guide_links.html' %} {% if is_template %} {{ revision_form.content|safe }}
{% else %}
{{ revision_form.content|safe }}
{% endif %} {% include 'wiki/includes/revision_comment.html' %}

{{ _('Tags') }}

{% include 'wiki/includes/attachment_list.html' %}
{% endblock %} {% block site_js %} {{ super() }} {{ js('jquery-ui') }} {% include 'wiki/includes/tag_suggestions.html' %} {% if is_template %} {% include 'wiki/includes/ace_scripts.html' %} {% else %} {% include 'wiki/includes/ckeditor_scripts.html' %} {% endif %} {{ js('wiki-edit') }} {% endblock %}