{% extends 'admin/change_form.html' %} {% load i18n form %} {% block title %}{% trans 'Send Fax' %}{% endblock %} {% block content_title %}

{% trans 'Send Fax' %}

{% endblock %} {% block extrahead %} {{ block.super }} {{ form.media }} {% endblock %} {% block breadcrumbs %}{% if not is_popup %} {% endif %}{% endblock %} {% block content %}
{% if fax %}
{% else %} {% endif %} {% csrf_token %} {% if form.non_field_errors %}

{% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{% endif %} {% if formset.forms.0.non_field_errors %}

{% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}

{% endif %}

{% trans 'General Information' %}

{% div_form form.sender_fax_number %} {% div_form form.priority %} {% div_form form.subject %} {% div_form form.keywords %} {% div_form form.recipient_numbers %} {% if fax %} {% else %} {% div_form form.file %} {% endif %}
{% if ENABLE_COVER %}

{% trans 'Cover Information' %} ({% trans "If all fields are blank cover won't sent" %})

{{ formset.management_form }} {{ formset.non_form_errors }} {{ formset.forms.0.fax }}
{{ formset.forms.0.societa_to.label }}{{ formset.forms.0.societa_to }} {{ formset.forms.0.societa_from.label }}{{ formset.forms.0.societa_from }}
{{ formset.forms.0.to_person.label }}{{ formset.forms.0.to_person }} {{ formset.forms.0.from_person.label }}{{ formset.forms.0.from_person }}
{{ formset.forms.0.pag.label }}{{ formset.forms.0.pag }}
{{ formset.forms.0.oggetto.label }}{{ formset.forms.0.oggetto }}
{{ formset.forms.0.note.label }}{{ formset.forms.0.note }}
{% endif %}
{% endblock %}