{% extends "docbow/base_user.html" %} {% load uni_form_tags %} {% load i18n %} {% load docbow %} {% load humanize %} {% block title %} {% include "docbow/message_title.html" %} {% endblock %} {% block extra_scripts %} {{ form.media }} {% endblock %} {% block main-column %}

{% include "docbow/message_title.html" %}

{% for attached_file in document.attached_files.all %}

{% trans "Download" %} ({{attached_file.content.size|frfilesizeformat}})
{{attached_file.name|escape|ellipsizedfilename:50|safe}}

{% endfor %}

{% trans "To" %}:

{% for to in document.human_to %} {{to}} {% endfor %}

{% trans "Comment" %}:

{{ document.comment }}

{% if form %} {% if document.document_forwarded_to.all %}

{% trans "Forwarded to" %}

{% endif %}
{% with form.helper as helper %}

Transférer le document à :

{% uni_form form helper %}
{% endwith %}
{% endif %} {% endblock %}