{% 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 trimmed %}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 GitBook Review Guideline.{% endblocktrans %}

{% trans 'Personal Review Stats' %}

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

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

{% endif %}
{% if reviews %} {% include 'reviews/_includes/review_table.html' with user=user reviews=reviews show_all_comments=True %} {% 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 %}