{% extends 'partials/base.html' %} {% load thumbnail %} {% block head_css %} {% endblock %} {% block content %} {% include 'partials/header.html' %}
{% csrf_token %} {% if request.user.is_customer %} {% elif request.user.is_contractor %} {% endif %}
{% if request.user.avatar %} {% thumbnail request.user.avatar "235x224" crop="center" as avatar %} profile-image {% endthumbnail %} {% else %} {% if request.user.gender == "female" %} profile-image {% else %} profile-image {% endif %} {% endif %}

ФИО

{% if request.user.is_contractor %}

Специализации

{% for spec_id in form.contractor_specializations.value %}
{% endfor %}
Добавить еще
{% endif %}

Местоположение

Имя, Фамилия, Отчество {{ fin_info_form.fio.errors.as_text }}
Дата рождения {{ fin_info_form.date_of_birth.errors.as_text }}
Телефон {{ fin_info_form.phone.errors.as_text }}
Резиденство {{ fin_info_form.residency.errors.as_text }}
{% for residency in fin_info_form.residency %}

{{ residency.choice_label }}

{% endfor %}
Юридический статус {{ fin_info_form.legal_status.errors.as_text }}
{% for lstatus in fin_info_form.legal_status %}

{{ lstatus.choice_label }}

{% endfor %}
Серия и номер паспорта {{ fin_info_form.passport_series.errors.as_text }} {{ fin_info_form.passport_number.errors.as_text }}
Код подразделения {{ fin_info_form.subdivision_code.errors.as_text }}
Дата выдачи {{ fin_info_form.passport_issue_date.errors.as_text }}
Кем выдан {{ fin_info_form.passport_issued_by.errors.as_text }}
Почтовый адрес {{ fin_info_form.address.errors.as_text }}
ИНН {{ fin_info_form.inn.errors.as_text }}
Яндекс.Деньги {{ fin_info_form.yandex_money.errors.as_text }}
Номер карты {{ fin_info_form.credit_card_number.errors.as_text }}
Скан-копии страниц паспорта {{ fin_info_form.passport_scan.errors.as_text }}
{% if fin_info_form.passport_scan.value %} {# {{ fin_info_form.passport_scan.value }}#} Скан-копия загружена {% endif %}

Прикрепить файл

{% include 'partials/footer.html' %}
{% endblock %}