Контакты
{% for contact in contacts_users %}
{% thumbnail contact.avatar "60x60" crop="center" as im %}

{% endthumbnail %}
{% if contact.is_contractor %}
{% url "users:contractor-profile" pk=contact.pk as contact_url %}
{% else %}
{% url "users:customer-profile-open-projects" pk=contact.pk as contact_url %}
{% endif %}
Контакты
0
Удалить контакт
{% endfor %}
{% include 'contact-info.html' %}
Заказы
{% for order in orders %}
{% endfor %}
Этапы работы
1 / Согласование условий
Обсуждение задания и условий выполнения работы.
Подтверждение заказа исполнителем.
2 / Резервирование
Резервирование заказчиком суммы оплаты по заказ.
Деньги перечисляются и хранятся на сайте.
3 / Выполнение работы
Процесс выполнения задания в заказе до получения
заказчиком итогового результата работы.
{% include 'review_add_modal.html' %}
{% include 'arbitration_modal.html' %}
Заказы
{% for torder in team_orders %}
{{ torder }}
Исполнитель: {{ torder.team.name }}
{% for tuser in torder.team.users.all %}
- {{ tuser }}
{% endfor %}
Чаты:
{% if request.user.pk != torder.team.owner.pk %}
{{ torder.team.owner.username }},
{% endif %}
{% for tuser in torder.team.contractors.all %}
{% if request.user.pk != tuser.pk %}
{{ tuser.username }},
{% endif %}
{% endfor %}
Полное описание заказа
{% endfor %}
{% for yteam in your_teams %}
{{ yteam }}
Владелец группы: {{ yteam.owner }}
{% for tuser in yteam.contractors.all %}
- {{ tuser }}
{% endfor %}
Чаты:
{% if request.user.pk != torder.team.owner.pk %}
{{ yteam.owner.username }},
{% endif %}
{% for tuser in yteam.contractors.all %}{{ tuser.username }},
{% endfor %}
{% endfor %}
{% include 'order_info.html' %}