{% 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 %} profile-image {% endif %}

ФИО

{% if request.user.is_contractor %}

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

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

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

{% if request.experience_edit %}
Классификация зданий
Виды строительства
{{ form.contractor_building_classifications }}
{{ form.contractor_construction_types }}
{% else %}
Дата рождения
Пол
Статус
{{ form.date_of_birth }}
{% for id, text in form.gender.field.choices %}

{{ text }}    

{% endfor %}
{{ form.contractor_status }}
Сайт
Skype
Телефон
Второй телефон

Есть допуск СРО

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