{% extends "review/base.html" %} {% load markitup_tags %} {% load uni_form_tags %} {% block primary %}

Proposal Review

#{{ proposal.number }}: {{ proposal.title }}

Current status: {{ proposal.result.get_accepted_display }}
{% if is_reviewer_admin %}
{% csrf_token %} {% if proposal.result.get_accepted_display == "accepted" %} {% else %} {% if proposal.result.get_accepted_display == "rejected" %} {% else %} {% endif %} {% endif %}
{% endif %}
{% if proposal.extreme %}
E
{% endif %} {% if proposal.invited %}
I
{% endif %}
{% if proposal.cancelled %}

Cancelled

{% endif %}
{{ proposal.description }}
Type:
{{ proposal.kind.name }}
Abstract:
{{ proposal.abstract|safe }}
Audience level:
{{ proposal.get_audience_level_display }}
Category:
{{ proposal.category.name }}
Duration:
{{ proposal.get_duration_display }}
Submitting speaker:
{{ proposal.speaker }}
About speaker:
{{ proposal.speaker.biography|safe }}
{% if proposal.additional_speakers.all %}
Additional speakers:
    {% for speaker in proposal.additional_speakers.all %} {% if speaker.user %}
  • {{ speaker.name }} — {{ speaker.email }}
  • {% else %}
  • {{ speaker.email }} — pending invitation
  • {% endif %} {% endfor %}
{% endif %} {% if proposal.additional_notes %}
Additional Notes: (private from submitter)
{{ proposal.additional_notes|safe }}
{% endif %}
{% if is_reviewer_admin or not proposal.invited %}

Votes

+1 vote{{ proposal.plus_one|pluralize }}
{{ proposal.plus_one }}
+0 vote{{ proposal.plus_zero|pluralize }}
{{ proposal.plus_zero }}
−0 vote{{ proposal.minus_zero|pluralize }}
{{ proposal.minus_zero }}
−1 vote{{ proposal.minus_one|pluralize }}
{{ proposal.minus_one }}
responses
{{ proposal.total_votes }}
{% if reviews %}

Review Comments

{% for review in reviews %}
Vote: {{ review.vote }}
{{ review.comment|safe }}
{{ review.user }} {{ review.submitted_at|timesince }} ago {% if is_reviewer_admin %}
{% csrf_token %}
{% endif %}
{% endfor %} {% endif %}

Vote and Comment

Enter your vote and any comment to go along with it. You can revise your vote or comment multiple times with an existing vote (your previously recorded score will be replaced during calculations). Your vote and comments are not public and will only be viewable by other reviewers.

{% markitup_media %} {% if review_form %}
{% csrf_token %}
{{ review_form|as_uni_form }}
{% else %}

You do not have permission to vote on this proposal.

{% endif %} {% if proposal.messages.all %}

Conversation with Proposer

{% for message in proposal.messages.all %}
{{ message.message|safe }}
{{ message.user }} {{ message.submitted_at|timesince }} ago
{% endfor %} {% endif %}

Leave a Message

You can leave a message for the proposer, who will be notified through email and given the chance to respond to your comments.

{% csrf_token %}
{{ message_form|as_uni_form }}
{% endif %} {% endblock %}