{% extends 'partials/base.html' %} {% load staticfiles %} {% load thumbnail %} {% block content %} {% include 'partials/header.html' %}

Чат {{ request.user }} {{ request.user.pk }}

Контакты

{% for contact in contacts_users %}
{% thumbnail contact.avatar "60x60" crop="center" as im %} mess-image {% 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 %}

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

Не более 10 файлов с общим объемом 500мб
отправить

Для заметок

сохранить

Заказы

{% for order in orders %}

{{ order }}

Исполнитель: {{ request.user.get_full_name }}

Полное описание заказа
{% endfor %}

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

отправить

Этапы работы

1 / Согласование условий

Обсуджение задания и условий выполнения работы. Подтверждение заказа исполнителем.

3 / Выполнение работы

Процесс выполнения задания в заказе до получения заказчиком итогового результата работы.

{% include 'review_add_modal.html' %} {% include 'arbitration_modal.html' %}

Для заметок

сохранить
{% if team_orders %}

Заказы

{% 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 %}

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

отправить
{% endif %}
{% include 'partials/footer.html' %}
{% endblock %} {% block js_block %} {% endblock %}