{% for header in table_data.headers %} {% if header.is_token_header %}
{{ header.token.value }}
{% if header.is_enabled %}{{ header.single_tag.getValue }}{% else %} {% endif %} {% if header.is_enabled %} {% endif %}
{# Input field representing current token->tag mapping #} {% if header.is_enabled %} {% endif %} {# Unmapped tags section here #} {% elif header.is_tag_header %}
{{ header.tag.getValue }}
{% endif %} {% endfor %} {# Image name column #} Original Import Path {% for row in table_data.get_rows %} {% for cell in row.get_cells %} {% if cell.is_token_cell %} {# Display special case background color for server applied tokens #} {# Only if this row is annotateable are inputs added #} {% if row.can_annotate %} {# Create a hidden field to indicate that for the current mapping, this image is tagged server side#} {% if cell.is_tagged %} {% endif %} {% endif %} {# Unmapped tags section here #} {% elif cell.is_tag_cell %} {# Display special case background color for server applied tokens #} {# Only if this row is annotateable are inputs added #} {% if row.can_annotate %} {# Create a hidden field to indicate that for the current mapping, this image is tagged server side #} {% if cell.is_tagged %} {% endif %} {% endif %} {% endif %} {% endfor %} {# Image name column #} {{ row.get_client_path }} ({{ row.get_id }}) {% endfor %}