{% load i18n %}

{% trans 'Pending for publishing' %}

{% blocktrans with questionnaire_type=questionnaire_type %} This {{ questionnaire_type }} is currently waiting to be published. {% endblocktrans %}

{% if 'publish_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 publisher 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 "Publish" %}

{% blocktrans with questionnaire_type=questionnaire_type %} As a publisher you can publish the {{ questionnaire_type }} once the data is complete. The {{ questionnaire_type }} will be available to public users. {% endblocktrans %}

{% trans "Reject" %}

{% blocktrans with questionnaire_type=questionnaire_type %} As a publisher 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 publisher" as assign_header %} {% trans "Assigned publishers:" as assign_assigned %} {% trans "There are no publishers assigned to this questionnaire." as assign_empty %} {% trans "Edit assigned publishers. Click the button to update the assigned publishers." as assign_edit %} {% trans "Update publishers" 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.publishers 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 %}