{% extends 'textdocs/base.html' %} {% block form_media %} {{ title_form.media }} {{ content_form.media }} {% endblock %} {% block title %}Create a New Document{% endblock %} {% block content %}

Create a New Document

You will create the main document and its first version (v1).


{% csrf_token %} {% if title_form.errors or content_form.errors %}
Please correct the errors below:
{% endif %}
{{ title_form.title }}

Initial Content (Version 1)

{{ content_form.as_p }}
Cancel
{% endblock %}