{% extends 'partials/base.html' %} {% load project_tags %} {% block content %} {% include 'partials/header.html' %}
{% include 'partials/customer_profile_info_block.html' %}
{% for proj in projects %}

{{ proj.name }}

  • Объект "{{ proj.realty.name }}"
  • {{ proj.get_team_answers|length }} ответ от имени группы
{% if request.user == customer %} {% endif %}

{{ proj.text }}

  • {{ proj.created}}
  • 0
  • {{ proj.answers.count }}
  • {{ customer.get_full_name }}

{{ proj.budget }}

{% if request.user == proj.customer %} {% endif %}
{% endfor %}
{% include 'partials/pagination.html' %}
{% include 'partials/footer.html' %}
{% endblock %}