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

Documents

{{ module_description }}

{% if module_view_options or archived_count or can_import or can_export or can_add %}
{% if archived_count %} {% endif %} {% include 'core/_module_view_control.html' %} {% if can_import %} Import {% endif %} {% if can_export %} Export {% endif %} {% if can_add %} New Folder Upload Document New Document {% endif %}
{% endif %}

{% if current_folder %}{{ current_folder.name }}{% else %}Documents{% endif %}

{{ folders|length }} active folder{{ folders|length|pluralize }} ยท {{ documents|length }} active document{{ documents|length|pluralize }}
{% if current_folder %} {% if can_add or can_change or can_archive or can_delete %}
{% if can_add %}Upload Document{% endif %} {% if can_change %}Edit Folder{% endif %} {% if can_archive %}
{% csrf_token %}
{% endif %} {% if can_delete %}
{% csrf_token %}
{% endif %}
{% endif %} {% endif %}
{% for folder in folders %}
๐Ÿ“ {{ folder.name }}
{% if 'attachments' in module_view_fields %} {{ folder.children.count }} subfolder{{ folder.children.count|pluralize }} ยท {{ folder.documents.count }} document{{ folder.documents.count|pluralize }} {% else %}{% endif %} {% if 'size' in module_view_fields %} {% if folder.archived %}Archived ยท {% endif %}Folder {% else %}{% endif %}
Open {% if can_change %}Edit{% endif %} {% if can_archive %}
{% csrf_token %}
{% endif %} {% if can_delete %}
{% csrf_token %}
{% endif %}
{% endfor %} {% for document in documents %}
{% if document.display_attachment %}
๐Ÿ“Ž {{ document.display_attachment.original_name }}
{% if 'attachments' in module_view_fields %} {% if document.archived %}Archived ยท {% endif %}Uploaded Document {% else %}{% endif %} {% if 'size' in module_view_fields %} {{ document.display_attachment.size|human_filesize }} {% else %}{% endif %}
{% if can_archive %}
{% csrf_token %}
{% endif %} {% if can_delete %}
{% csrf_token %}
{% endif %}
{% else %}
๐Ÿ“„ {{ document.title }}
{% if 'created' in module_view_fields %} {% else %}{% endif %} {% if 'summary' in module_view_fields %} {% else %}{% endif %} {% if 'category' in module_view_fields %} {% else %}{% endif %} {% if 'tags' in module_view_fields %} {% else %}{% endif %} {% if 'attachments' in module_view_fields %} {% else %}{% endif %} {% if 'size' in module_view_fields %} {% else %}{% endif %}
{% if can_change or can_archive or can_delete %}
{% if can_change %}Edit{% endif %} {% if can_archive %}
{% csrf_token %}
{% endif %} {% if can_delete %}
{% csrf_token %}
{% endif %}
{% endif %} {% endif %}
{% endfor %} {% if not folders and not documents %}

No documents here yet

Create a folder, create a Killian Document, or upload an existing file.

{% if can_add %}
New Folder Upload Document New Document
{% endif %}
{% endif %}
{% if archived_count %} {% endif %} {% endblock %}