{% 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 %}

Полностью. Например: Общество с ограниченной ответственностью "Сетьинвест"

  {# Наименование 2{% if form.name_short_self.field.required %}*{% endif %}:#}
{{ form.name_short_dadata }} {% if not is_ajax %}{{ form.name_short_dadata.errors }}{% endif %}

Коротко. Например: ООО "Сетьинвест"

  {# Наименование 3{% if form.name_short_dadata.field.required %}*{% endif %}:#}
{{ form.name_short_self }} {% if not is_ajax %}{{ form.name_short_self.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.ogrn.field.required %}*{% endif %}:
{{ form.ogrn }} {% if not is_ajax %}{{ form.ogrn.errors }}{% endif %}
ОКПО{% if form.okpo.field.required %}*{% endif %}:
{{ form.okpo }} {% if not is_ajax %}{{ form.okpo.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 %}
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 form.address.field.required %}*{% endif %}:
{{ form.address }} {% if not is_ajax %}{{ form.address.errors }}{% endif %}
Поиск банка:
{% if not form.bank_bik.is_hidden %}
БИК{% if form.bank_bik.field.required %}*{% endif %}:
{{ form.bank_bik }} {% if not is_ajax %}{{ form.bank_bik.errors }}{% endif %}
{% endif %} {% if not form.bank_name.is_hidden %}
Наименование банка{% if form.bank_name.field.required %}*{% endif %}:
{{ form.bank_name }} {% if not is_ajax %}{{ form.bank_name.errors }}{% endif %}
{% endif %} {% if not form.bank_korr_account.is_hidden %}
К/сч.{% if form.bank_korr_account.field.required %}*{% endif %}:
{{ form.bank_korr_account }} {% if not is_ajax %}{{ form.bank_korr_account.errors }}{% endif %}
{% endif %}
Р/сч.{% if form.bank_account.field.required %}*{% endif %}:
{{ form.bank_account }} {% if not is_ajax %}{{ form.bank_account.errors }}{% endif %}
{% if not is_ajax %} {% endif %}