{% extends "layout.html" %} {% block content %}

Мои отправленные опросы

{% if invites %} {% for invite in invites %}
{{ invite.survey.survey_type.name }}
Отправлено: {{ invite.sent_at.strftime('%d.%m.%Y %H:%M') }}
Кому: {{ invite.recipient_email }}
{% if current_user.is_admin %} Отправитель: {{ invite.survey.user.full_name }} ({{ invite.survey.user.email }}) {% endif %}
{% if invite.responded %} {% endif %} {% if not invite.responded %}
{% endif %}
{% if invite.responded and results[invite.id] %} {% set result = results[invite.id] %} {% set scores = result.platform_scores | from_json %} {% set unsupported = result.unsupported | from_json %}

ФИО: {{ result.full_name or '—' }}

Телефон: {{ result.phone or '—' }}

Организация: {{ result.organization or '—' }}

Получен: {{ result.submitted_at.strftime('%d.%m.%Y %H:%M') }}


Процент соответствия платформ:

    {% for p, percent in scores.items() %}
  • {{ p }}: {{ percent }}%
  • {% endfor %}

Неподдерживаемые функции:

    {% for p, items in unsupported.items() %}
  • {{ p }}: {% if items %} {{ items | join(", ") }} {% else %} все поддерживаются {% endif %}
  • {% endfor %}

Комментарий:
{{ results[invite.id].comment or "—" }}

{% else %}

Ответ ещё не получен.

{% endif %}
{% endfor %} {% else %}

Вы ещё не отправляли опросы.

{% endif %}
{% endblock %}