{% extends "base/base.html" %} {% load static %} {% block title %} Adjust question regions {% endblock title %} {% block page_heading %} Adjust question regions (beta!) {% endblock page_heading %} {% block main_content %}
{% if allowSharedPages %}

Because allowSharedPages is enabled, it is recommended that you define “regions” of any shared pages shown below, to highlight where the answer to each question is expected. Doing so will help Plom present the most relevant parts of the page for marking and for other question-specific tasks.

{% endif %}
{% for x in region_info_per_page %} {% if x.has_regions or x.has_questions_sharing_this_page %}

Page {{ x.page }}: {{ x.question_labels_comma_sep_list_html|safe }}

{% if x.has_questions_sharing_this_page %}
Subdivide page {{ x.page }}
{% csrf_token %}

Define new regions by “slicing” the page.

(A comma-separated list of floats, representing percentages)
{% endif %}
Details {{ x }}

{% endif %} {% endfor %}

Raw region data

{% for region in regions %} {{ region }}
{% endfor %}

{{ region_info_per_page|json_script:"rectangle-regions-data" }} {% endblock main_content %}