{% extends 'core/base.html' %} {% load killian_format %} {% block title %}{{ title }} - {{ org.name }} | Killian{% endblock %} {% block scripts %} {% endblock %} {% block content %}

{{ title }}

Create and maintain a Killian Document with rich formatting and private reference attachments.

Back
{% csrf_token %} {{ form.non_field_errors }}
{{ form.title }} {{ form.title.errors }}
{{ form.folder }} {{ form.folder.errors }}
{{ form.summary }} {{ form.summary.errors }}
{{ form.category }} {{ form.category.errors }}
{{ form.tags }} {{ form.tags.errors }}
{{ form.body }}
{{ form.body.errors }} The formatted body is stored in Killian and can be downloaded as a Microsoft Word document.
{% include 'core/_boolean_toggle.html' with field=form.is_published %} {{ form.is_published.errors }}

Reference Files

Uploaded files only appear inside this Killian Document.

{{ upload_form.files }} {{ upload_form.files.errors }} {% if upload_form.files.help_text %} {{ upload_form.files.help_text }} {% endif %} {% if article %}
{% for attachment in attachments %}
{{ attachment.original_name }} {{ attachment.size|human_filesize }} {{ attachment.created_at }}
Open Download {% if can_delete %} {% endif %}
{% empty %}

No reference files uploaded yet.

{% endfor %}
{% else %} Save the document to begin managing its uploaded reference files. {% endif %}
Cancel
{% if not article %}

Unsaved Document

You have unsaved changes. Would you like to save this document before leaving?

{% endif %} {% endblock %}