{% extends 'partials/base.html' %} {% load specializtions_tags %} {% load thumbnail %} {% block content %} {% include 'partials/header.html' %}
{% if contractor.avatar %} {% thumbnail contractor.avatar "235x224" crop="center" as im %} profile-image {% endthumbnail %} {% else %} profile-image {% endif %}

{{ contractor.get_full_name }} [{{ contractor.username }}]

{{ contractor.get_location }}

{% if contractor.contractor_status == 'free' %}
Свободен
{% else %}
Занят
{% endif %} показать контакты
{% specialization_widget contractor.pk %}
{% ratings_widget contractor.pk %} {% if contractor.cro %}

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

{% endif %}
{% if contractor.pk == request.user.pk %} {% endif %}
{% if False %} {% for p in contractor.portfolios.all %}
{% thumbnail p.get_cover "224x224" crop="center" as im %}
{% endthumbnail %}
{{ p }} {% if request.user.pk == contractor.pk %}
{% csrf_token %}
{% endif %}
{% empty %}

Работ в портфолио пока нет

{% endfor %} {% endif %}
{% if contractor.pk == request.user.pk %} {% endif %}
{% if False %} {% for ws in contractor.work_sell.all %}
{{ ws }} {% if request.user.pk == contractor.pk %}
{% csrf_token %}
{% endif %}
{% endfor %} {% endif %}

Загрузить резюме

{% thumbnail contractor.avatar "176x160" crop="center" as im %} profile-image {% endthumbnail %}

{{ contractor.get_full_name }}

{% if contractor.contractor_resume.resume_file %} скачать резюме {% endif %}

{{ contractor.summary }}

    {% if contractor.website %}
  • {{ contractor.website }}
  • {% endif %}
  • {{ contractor.email }}
  • {% if contractor.phone %}
  • {{ contractor.phone }}
  • {% endif %} {% if contractor.phone2 %}
  • {{ contractor.phone2 }}
  • {% endif %}
  • {{ contractor.get_location }}
{% specialization_widget contractor.pk %}
{{ contractor.contractor_resume.text|safe }}
{% for review in contractor.reviews_by_contractor.all %}

{{ review.get_sender }}

{% if review.project.deal_type == 'secure_deal' %} Безопасная сделка {% endif %}

{{ review.text|safe }}

{% empty %}

Отзывов пока нет

{% endfor %}
{% include 'partials/footer.html' %}
{% endblock %} {% block js_block %} {% endblock %}