{% load i18n %}

{% trans "Pending review" %}

{% blocktrans with questionnaire_type=questionnaire_type %} This {{ questionnaire_type }} is currently waiting for review before it can be published. {% endblocktrans %}

{% if 'review_questionnaire' in review_config.permissions %} {% if review_config.mode == 'view' and 'edit_questionnaire' in review_config.permissions %}

{% trans "Edit" %}

{% blocktrans with questionnaire_type=questionnaire_type %} As a reviewer you can edit the {{ questionnaire_type }}. If the {{ questionnaire_type }} is not complete you have to "reject" it and the compiler / editor(s) have to revise it. {% endblocktrans %}

{% elif review_config.mode == 'edit' %}

{% trans "View" %}

{% blocktrans with questionnaire_type=questionnaire_type %} View this {{ questionnaire_type }}. {% endblocktrans %}

{% endif %}

{% trans "Approve" %}

{% blocktrans with questionnaire_type=questionnaire_type %} As a reviewer you can approve the {{ questionnaire_type }} once the data is complete. The publisher will be notified. {% endblocktrans %}

{% trans "Reject" %}

{% blocktrans with questionnaire_type=questionnaire_type %} As a reviewer you can reject the {{ questionnaire_type }} if the data is not complete and the compiler / editor(s) will be notified that they have to revise it. {% endblocktrans %}

{% endif %} {% if 'delete_questionnaire' in review_config.permissions %} {% include 'details/review_panel/_delete.html' %} {% endif %} {% if 'assign_questionnaire' in review_config.permissions %} {% trans "Assign reviewer" as assign_header %} {% trans "Assigned reviewers:" as assign_assigned %} {% trans "There are no reviewers assigned to this questionnaire." as assign_empty %} {% trans "Edit assigned reviewers. Click the button to update the assigned reviewers." as assign_edit %} {% trans "Update reviewers" as assign_button %} {% trans "Please note that currently, invited users are not notified automatically. This feature is in development and will be added soon. For the time being, it is recommended to notify invited users via e-mail." as assign_notice %} {% include 'details/review_panel/_assign_user.html' with users=review_config.reviewers questionnaire_type=questionnaire_type review_status=review_config.review_status %} {% endif %} {% if 'change_compiler' in review_config.permissions %} {% include 'details/review_panel/_change_compiler.html' %} {% endif %}