{% extends "nomcom/nomcom_private_base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load nomcom_tags %} {% block subtitle %} - View feedback about {{ nominee.email.person.name }}{% endblock %} {% block nomcom_content %} {% origin %}

Feedback about {{ nominee }}

{% for ft in feedback_types %}
{% for feedback in nominee.feedback_set.all %} {% if feedback.type.slug == ft.slug %} {% if forloop.first %}

{% else %}
{% endif %}
{% if feedback.time > last_seen_time %}New{% endif %}From
{{ feedback.author|formatted_email|default:"Anonymous" }} {% if ft.slug == "nomina" and feedback.nomination_set.first.share_nominator %} OK to share name with nominee {% endif %}
Date
{{ feedback.time|date:"Y-m-d" }}
{% if ft.slug == "nomina" %} {% for fn in feedback.nomination_set.all %} {% if fn.candidate_name %}
Nominee
{{ fn.candidate_name }}
{% endif %} {% if fn.candidate_phone %}
Nominee phone
{{ fn.candidate_phone }}
{% endif %} {% endfor %} {% endif %}
Positions
{{ feedback.positions.all|join:"," }}
{% if feedback.subject %}
Subject
{{ feedback.subject }}
{% endif %}
Body
{% decrypt feedback.comments request year 1 %}
{% endif %} {% endfor %}
{% endfor %}
Back {% endblock %}