{% extends "docbow/base_user.html" %} {% load i18n %} {% block extra_scripts %} {{ form.media }} {% endblock %} {% block title %} {% trans "send-file_menu" %} {% endblock %} {% block main-column %}
{% csrf_token %} {% include "docbow/errors.html" with error_form=form %}
{{ form.file_type.name }}
{% if form.sender %} {% include "docbow/field.html" with field=form.sender %} {% endif %} {% for content_field in form.template_content_fields %} {% include "docbow/field.html" with field=content_field %} {% endfor%} {% if form.private %} {% include "docbow/field.html" with field=form.private %} {% endif %} {% include "docbow/field.html" with field=form.recipients %} {% if form.extra_senders %} {% include "docbow/extra_senders_field.html" with field=form.extra_senders %} {% endif %} {% include "docbow/field.html" with field=form.comment %}
{% endblock %}