{% load common_tags %} {% load specializtions_tags %} {% load thumbnail %} {% load i18n %} {% for object in objects %} {% if object|class_name == 'Team' %} {% with team=object %}
{% if team.owner.avatar %} {% thumbnail team.owner.avatar "126x125" crop="center" as avatar %} profile-image {% endthumbnail %} {% else %} {% if team.owner.gender == "female" %} profile-image {% else %} profile-image {% endif %} {% endif %}

{{ team.name }}

Свободен
{% specialization_team_widget team_id=team.pk %}
{% ratings_team_widget team.pk 'restList2' %}

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

{% for portf in team.portfolios.all|slice:':4' %} {% endfor %}
{% endwith %} {% elif object|class_name == 'User' %} {% with contractor=object %}
{% if contractor.avatar %} {% thumbnail contractor.avatar "126x125" crop="center" as avatar %} profile-image {% endthumbnail %} {% else %} {% if contractor.gender == "female" %} profile-image {% else %} profile-image {% endif %} {% endif %}

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

{% if contractor.contractor_status == 'free' %}
Свободен
{% else %}
Занят
{% endif %}
{% specialization_widget user_id=contractor.pk %}
{% ratings_widget contractor.pk 'restList2' %} {% if contractor.cro %}

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

{% endif %}
{% for portf in contractor.portfolios.all|slice:':4' %} {% endfor %}
{% endwith %} {% endif %} {% endfor %}
{% include 'partials/ajax_pagination.html' %}