{% extends "base_generic.html" %} {% block head %} {% endblock %} {% block content %} {% block small %} {% if shared_document_detail %}

{{ shared_document_detail.name|capfirst}}

{{shared_document_detail.description|safe|linebreaksbr}}

{% if shared_document_detail.pdf_file %} {% if shared_document_detail.pdf_file_to_download %} {% endif %} {% endif %} {% if shared_document_detail.editable_file %} {% if shared_document_detail.editable_file_to_download %} {% endif %} {% endif %} {% if shared_document_detail.zip_file %} {% if shared_document_detail.zip_file_to_download %} {% endif %} {% endif %}
Download PDF: {{ shared_document_detail.pdf_file }}
Download editable file: {{ shared_document_detail.editable_file }}
Download ZIP file: {{ shared_document_detail.zip_file }}
{% if shared_document_detail.copyright %}
© {{shared_document_detail.copyright}}
{% endif %} {% if shared_document_detail.shared_document_further_files_set.all %} {% for further_files in shared_document_detail.shared_document_further_files_set.all %}

{{further_files.description|safe|linebreaksbr}}

{% if further_files.pdf_file %} {% if further_files.pdf_file_to_download %} {% endif %} {% endif %} {% if further_files.editable_file %} {% if further_files.editable_file_to_download %} {% endif %} {% endif %} {% if further_files.zip_file %} {% if further_files.zip_file_to_download %} {% endif %} {% endif %}
Download PDF: {{ further_files.pdf_file }}
Download editable file: {{ further_files.editable_file }}
Download ZIP file: {{ further_files.zip_file }}
{% if shared_document_detail.copyright %}
© {{shared_document_detail.copyright}}
{% endif %} {%endfor%} {%endif%}
{% if shared_document_detail.video_file %}

{% endif %}
{% endif %} {% endblock %} {% endblock %}