{% extends 'dashboard_base.html' %} {% load i18n staticfiles %} {% load compress crispy_forms_tags %} {% block dashboard_tablist %} {% include '_includes/dashboard_tablist.html' with active='review' %} {% endblock dashboard_tablist %} {% block main-content %}

{% blocktrans %}Current Review Stage: {{ review_stage }}{% endblocktrans %}

{% include review_stage_desc_tpl %}

{% blocktrans %} Note that at anytime, the identity of the reviewer, e.g. you, is hidden to other reviewers and speakers. For more information about the whole review process, please refer to the google doc Review Guideline. {% endblocktrans %}

{% trans 'Personal Review Stats' %}

Strong Accept (+1)
{{ vote.strong_accept }}
Weak Accept (+0)
{{ vote.weak_accept }}
Weak Reject (-0)
{{ vote.weak_reject }}
Strong Reject (-1)
{{ vote.strong_reject }}
{% if object_list %} {% include 'reviews/_includes/proposal_table.html' with proposals=object_list %} {% else %}

{% blocktrans %}You have reviewed all talk proposals.{% endblocktrans %}

{% endif %}
{% if reviews %} {% include 'reviews/_includes/review_table.html' with user=user reviews=reviews %} {% else %}

{% blocktrans %}You haven't reviewed any talk proposals.{% endblocktrans %}

{% endif %}
{% if review_stage == 2 and proposals_with_verdict %}
{% include 'reviews/_includes/proposal_table.html' with proposals=proposals_with_verdict verdict=True %}
{% endif %}
{% endblock main-content %} {% block extra_js %} {% compress js %} {% endcompress %} {% endblock extra_js %}