{% extends "base.html" %} {% block title %}Реквизиты{% endblock %} {% block content %} {% url 'customer_profile_edit' as url_profile_edit %}

Мои реквизиты

{% csrf_token %}
Карточка компанииРедактировать реквизиты

{{ profile.get_company_name }}

{% if profile.is_org %}
Полное название организации: {{ profile.full_name }}
{% endif %} {% if profile.inn %}
ИНН: {{ profile.inn }}
{% endif %} {% if profile.is_org %}
КПП: {{ profile.kpp }}
{% endif %} {% if profile.ogrn %}
{% if profile.is_ip %}ОГРНИП{% else %}ОГРН{% endif %}: {{ profile.ogrn }}
{% endif %} {% if profile.okpo %}
ОКПО: {{ profile.okpo }}
{% endif %} {% if profile.is_ip %} {% if profile.svid_gos_reg %}
Свид-во о гос. регистрации: {{ profile.svid_gos_reg }}
{% endif %} {% if profile.ip_reg_date %}
Дата регистрации ИП: {{ profile.ip_reg_date }}
{% endif %} {% endif %}
{% if profile.is_org %}
{% if profile.get_boss_fio or profile.boss_title %}
{% if profile.boss_title %}{{ profile.boss_title }}: {% endif %}{{ profile.get_boss_fio }}
{% endif %} {% if profile.na_osnovanii %}
Действует на основании {{ profile.na_osnovanii }}
{% endif %}
{% endif %} {% if profile.get_glavbuh_fio %}
Главный бухгалтер: {{ profile.get_glavbuh_fio }}
{% endif %}
{% for account in accounts %}
БИК: {{ account.bik }}
Банк: {{ account.name }}
К/С: {{ account.korr_account }}
Р/С: {{ account.account }}
{% endfor %}
{% if profile.address %}
Фактический адрес: {{ profile.address }}
{% endif %} {% if profile.jur_address %}
Юридический адрес: {{ profile.jur_address }}
{% endif %} {% if profile.real_address %}
Почтовый адрес: {{ profile.real_address }}
{% endif %} {% if profile.get_full_phone %}
Телефон: {{ profile.get_full_phone }}
{% endif %} {% if profile.get_full_fax %}
Факс: {{ profile.get_full_fax }}
{% endif %} {% if profile.email %}
Электронная почта: {{ profile.email }}
{% endif %} {% if profile.site %}
Сайт: {{ profile.site }}
{% endif %}
В карточке показывать:
{% if profile.is_ip %}
{% endif %} {% if profile.is_org %}
{% endif %}
{% if profile.is_org %}
{% endif %}
{% if profile.is_ip %}
{% endif %}
{% if profile.is_org %}
{% endif %}
{% if filters_form.bank_account %} {{ filters_form.bank_account }} {% endif %}
{% endblock %} {% block dialogs %} {% url 'customer_profile_email_ajax' as url_profile_email_ajax %}
{% csrf_token %}
{{ email_profile_form.as_p }}
{% endblock %} {% block js %} {% url 'customer_profile_filters_edit_ajax' as url_filters_edit_ajax %} {% endblock %}