{% load i18n %} {% load questionnaire_tags %}

{% trans "Draft version" %}

{% blocktrans with questionnaire_type=questionnaire_type %} The {{ questionnaire_type }} data entry form is saved as a draft. The compiler is responsible for this data entry and can invite editors (WOCAT users) to help create it. Once the data entry is complete the compiler can submit it for review. {% endblocktrans %}

{% if 'submit_questionnaire' in review_config.permissions %}
{% trans "Submit" %}

{% blocktrans with questionnaire_type=questionnaire_type %} All edits have been made, the data entry is complete, and the {{ questionnaire_type }} is ready to be submitted. After submission a reviewer is selected. {% endblocktrans %}

{% if review_config.blocked_by %}

{{ review_config.blocked_by }}

{% endif %}
{% comment %}editors (non compilers) can indicate the compiler that they are finished editing{% endcomment %} {% elif review_config.roles|is_editor and 'edit_questionnaire' in review_config.permissions %}
{% trans "Editing finished" %}

{% trans "Inform the compiler that you have finished editing the questionnaire." %}

{% endif %} {% if review_config.mode == 'view' and 'edit_questionnaire' in review_config.permissions %}
{% trans "Edit" %}

{% if review_config.is_blocked %} {{ review_config.blocked_by }} {% else %} {% trans 'Start editing the questionnaire.' %} {% endif %}

{% elif review_config.mode == 'edit' %}
{% trans "View" %}

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

{% endif %} {% if 'delete_questionnaire' in review_config.permissions %} {% include 'details/review_panel/_delete.html' %} {% endif %} {% if 'assign_questionnaire' in review_config.permissions %} {% trans "Manage editors" as assign_header %} {% trans "Invited editors:" as assign_assigned %} {% trans "There are no editors invited to this questionnaire." as assign_empty %} {% trans "Add or remove WOCAT users as editors. Click the button on the right to update the invited editors." as assign_edit %} {% trans "Update editors" 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.editors 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 %}