{% load my_tags %}
{% if not is_ajax %} {% if form.non_field_errors %}

{{ form.non_field_errors }}

{% endif %} {% endif %}
{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% if is_ajax %}
{% endif %}
 
Наименование:{% if form.name.field.required %} *{% endif %}
{{ form.name }} {% if not is_ajax %}{{ form.name.errors }}{% endif %}
ИНН:{% if form.inn.field.required %} *{% endif %}
{{ form.inn }} {% if not is_ajax %}{{ form.inn.errors }}{% endif %}
КПП:{% if form.kpp.field.required %} *{% endif %}
{{ form.kpp }} {% if not is_ajax %}{{ form.kpp.errors }}{% endif %}
ОКПО:{% if form.okpo.field.required %} *{% endif %}
{{ form.okpo }} {% if not is_ajax %}{{ form.okpo.errors }}{% endif %}
Юр. адрес:{% if form.address.field.required %} *{% endif %}
{{ form.address }} {% if not is_ajax %}{{ form.address.errors }}{% endif %}
Банковские реквизиты
БИК:{% if form.bank_bik.field.required %} *{% endif %}
{{ form.bank_bik }} {% if not is_ajax %}{{ form.bank_bik.errors }}{% endif %}
Наименование банка:{% if form.bank_name.field.required %} *{% endif %}
{{ form.bank_name }} {% if not is_ajax %}{{ form.bank_name.errors }}{% endif %}
Местонахождение:{% if form.bank_address.field.required %} *{% endif %}
{{ form.bank_address }} {% if not is_ajax %}{{ form.bank_address.errors }}{% endif %}
К/сч.:{% if form.bank_korr_account.field.required %} *{% endif %}
{{ form.bank_korr_account }} {% if not is_ajax %}{{ form.bank_korr_account.errors }}{% endif %}
Р/сч.:{% if form.bank_account.field.required %} *{% endif %}
{{ form.bank_account }} {% if not is_ajax %}{{ form.bank_account.errors }}{% endif %}
Контакты
Имя:{% if form.contact_name.field.required %} *{% endif %}
{{ form.contact_name }} {% if not is_ajax %}{{ form.contact_name.errors }}{% endif %}
E-mail:{% if form.contact_email.field.required %} *{% endif %}
{{ form.contact_email }} {% if not is_ajax %}{{ form.contact_email.errors }}{% endif %}
Телефон:{% if form.contact_phone.field.required %} *{% endif %}
{{ form.contact_phone }} {% if not is_ajax %}{{ form.contact_phone.errors }}{% endif %}
ICQ:{% if form.contact_icq.field.required %} *{% endif %}
{{ form.contact_icq }} {% if not is_ajax %}{{ form.contact_icq.errors }}{% endif %}
Skype:{% if form.contact_skype.field.required %} *{% endif %}
{{ form.contact_skype }} {% if not is_ajax %}{{ form.contact_skype.errors }}{% endif %}
Другое:{% if form.contact_other.field.required %} *{% endif %}
{{ form.contact_other }} {% if not is_ajax %}{{ form.contact_other.errors }}{% endif %}
{% if not is_ajax %} {% else %} {% endif %}