{% 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 %}