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

{{ article.title }}

{% include 'core/_copy_value_button.html' with copy_value=article.title copy_label='document title' %}
{% if article.summary %}

{{ article.summary }}

{% include 'core/_copy_value_button.html' with copy_value=article.summary copy_label='summary' %}
{% else %}

Killian Document

{% endif %}
Back Download Word {% if can_change %}Edit{% endif %}

Document

{% if article_body_html %}
{{ article_body_html|safe }}
{% else %}

No document content has been added yet.

{% endif %}
{% if attachments %}

Reference Files

{{ attachments|length }} file{{ attachments|length|pluralize }}
{% for attachment in attachments %} {% endfor %}
{% endif %} {% endblock %}