{% set tabindex = 0 %}
page #{{ i }} of {{ last }}:   {{ relative_directory }}
{% if metadata_json|length > 0 %}
{% for key, value in metadata_json.items() %}
{{ key }}: {{ value }}
{% endfor %} {% endif %} {% if form_schema %}
{% set is_first_iter = True %} {% for form_schema_row in form_schema %} {% if form_schema_row["type"] == "radio" %} {% for choice in form_schema_row['choices'] %}
{% set tabindex = tabindex + 1 %} {% endfor %} {% elif form_schema_row["type"] == "text" %}
{% set tabindex = tabindex + 1 %} {% endif %} {% set is_first_iter = False %} {% endfor %}
{% endif %} {% for image_path in image_paths %}
{{ image_path }}
{% set tabindex = tabindex + 1 %} {% endfor %}