{% extends "orga/base.html" %} {% load compress %} {% load i18n %} {% load review_score %} {% load rules %} {% load static %} {% block stylesheets %} {% endblock stylesheets %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block extra_title %}{% translate "Reviews" %} :: {% endblock extra_title %} {% block content %} {% has_perm "person.reviewer_list_speakerprofile" request.user request.event as can_view_speakers %}
{% if next_submission %} {% blocktranslate trimmed count count=missing_reviews %} Or review the missing proposal here. {% plural %} Or review the missing {{ count }} proposals one-by-one. {% endblocktranslate %} {% else %} {% translate "You’ve got no proposals left to review!" %} {% endif %}
{% include "orga/includes/review_filter_form.html" %}
{% csrf_token %}
{% if can_view_speakers %}{% endif %} {% for category in categories %}{% endfor %} {% for row in table %} {% if can_view_speakers %} {% endif %} {% for score in row.score_fields %} {% endfor %} {% empty %} {% endfor %}
{% translate "Title" %}{{ phrases.schedule.speakers }}{{ category.name }}{% translate "Comment" %}
{{ row.submission.title }} {% for speaker in row.submission.speakers.all %} {% include "orga/includes/user_name.html" with user=speaker lightbox=True %}
{% endfor %}
{% if score %} {{ score.as_field_group }} {% endif %} {{ row.form.text.as_field_group }}
{% translate "You don’t seem to have any proposals yet." %}
{% endblock content %}