{% from 'forms/_form.html' import form_header, form_rows, form_footer %} {% from 'events/abstracts/reviewing/_common.html' import render_tracks %} {% from 'events/reviews/_common.html' import render_instruction_box, render_score, render_user_avatar %} {% macro _render_abstract_reviewing_state(abstract) %} {% if abstract.reviewed_for_tracks|length > 1 %} {% set conflicting_msg = _("Proposed to accept in different tracks") %} {% else %} {% set conflicting_msg = _("All reviewers proposed to accept this abstract " "but as different contribution types") %} {% endif %} {% set mapping_title = {'not_started': _("No reviewer has reviewed this abstract yet"), 'in_progress': _("Not reviewed in all tracks"), 'positive': _("All reviewers proposed to accept this abstract"), 'conflicting': conflicting_msg, 'negative': _("No reviewer proposed to accept this abstract"), 'mixed': _("Not all reviewers proposed to accept this abstract")} %} {% set mapping_icon = {'positive': 'icon-checkmark', 'conflicting': 'icon-checkmark', 'negative': 'icon-cross', 'mixed': 'icon-tilde', 'in_progress': 'icon-circle-small', 'not_started': 'icon-circle-small'} %} {% set state = abstract.reviewing_state %}