{% extends "reviews/base.html" %} {% load compress %} {% load bootstrap_tags %} {% load account_tags %} {% load review_tags %} {% block head_title %}#{{ proposal.number }} - {{ proposal.title }}{% endblock %} {% block extra_style %} {% endblock %} {% block extra_head %} {% endblock %} {% block body %} {% if request.user.is_staff %}
{% csrf_token %}
{% if proposal.cancelled %}
Cancelled
{% elif proposal.result.status == "accepted" %} Accepted {% else %} {% if proposal.result.status == "rejected" %} Rejected {% else %} {% if proposal.result.status == "standby" %} Standby {% else %} Undecided {% endif %} {% endif %} {% endif %}
{% endif %}

#{{ proposal.number }}: {{ proposal.title }} ({{ proposal.speaker }}, Category: {{ proposal.category }})

{% with is_reviewer=True %} {% include "proposals/_proposal_fields.html" %} {% endwith %}
{% if proposal_tags_form %}

Edit proposal tags

{% csrf_token %} {% if proposal_tags_form.non_field_errors %}
{% for error in proposal_tags_form.non_field_errors %} {{ error }}
{% endfor %}
{% endif %} {{ proposal_tags_form.tags }} {% with field=proposal_tags_form.tags %} {% include "bootstrap/_field_errors.html" %} {% include "bootstrap/_field_help_text.html" %} {% endwith %}
{% endif %}

Current Results

+1 votes +0 votes -0 votes -1 votes Total Responses
{{ proposal.plus_one }} {{ proposal.plus_zero }} {{ proposal.minus_zero }} {{ proposal.minus_one }} {{ proposal.total_votes }}

{% if review_form %}
Submit Review

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.

{% csrf_token %} {{ review_form|as_bootstrap }}
{% else %}

You do not have permission to vote on this proposal.

{% endif %} {% if reviews %}
Review Comments
{% for review in reviews %}
{{ review.vote }}
{% if is_manager %}
{% csrf_token %}
{% endif %}
{% user_display review.user %} {{ review.submitted_at|timesince }} ago
{{ review.comment|bleach|safe }}
{% endfor %} {% endif %}
{% if review_messages %}

Conversation with the submitter

{% for message in review_messages %}
{% user_display message.user %} {{ message.submitted_at|timesince }} ago
{{ message.message|bleach|linebreaksbr|safe }}
{% endfor %}
{% endif %} {% if message_form %}
Send a message

If you'd like to communicate with the submitter, use the following form and he or she will be notified and given the opportunity to respond.

{% if proposal.result.group %}

The review period ends in {{ proposal.result.group.vote_start | timeuntil }}

{% endif %} {% csrf_token %} {{ message_form|as_bootstrap }}
{% else %}

The review period is now over.

{% endif %}
{% endblock %} {% block extra_script %} {% compress js %} {% endcompress %} {% endblock %}