+
+
+ {% if analyze_requested %}
+ Scanned {{ image_count }} image{{ image_count|pluralize }}
+ {% endif %}
+
+
+
+
{% if analyze_requested %}
-
Scanned {{ image_count }} image{{ image_count|pluralize }}
+
+ Same: {{ same_tags|length }}
+ Different: {{ different_tags|length }}
+ Missing in some: {{ partial_tags|length }}
+
+
+
+
+
+
+
+
+ Different tags (highlighted)
+
+
+
+
+ | Tag |
+ Unique values |
+ Sample values |
+ Split |
+
+
+
+ {% for row in different_tags %}
+
+ | {{ row.tag_name }} |
+ {{ row.unique_count }} |
+ {{ row.sample_values|join:", " }} |
+
+ {% if can_split %}
+
+ {% else %}
+ No split access
+ {% endif %}
+ |
+
+ {% empty %}
+
+ | No tags vary across all images. |
+
+ {% endfor %}
+
+
+
+
+
+
+ Same tags
+
+
+
+
+ | Tag |
+ Value |
+ Split |
+
+
+
+ {% for row in same_tags %}
+
+ | {{ row.tag_name }} |
+ {{ row.sample_values.0 }} |
+
+ {% if can_split %}
+
+ {% else %}
+ No split access
+ {% endif %}
+ |
+
+ {% empty %}
+
+ | No uniform tags found across all images. |
+
+ {% endfor %}
+
+
+
+
+
+
+ Missing in some images
+
+
+
+
+ | Tag |
+ Present in |
+ Unique values |
+ Split |
+
+
+
+ {% for row in partial_tags %}
+
+ | {{ row.tag_name }} |
+ {{ row.present_count }}/{{ image_count }} |
+ {{ row.unique_count }} |
+
+ {% if can_split %}
+
+ {% else %}
+ No split access
+ {% endif %}
+ |
+
+ {% empty %}
+
+ | All scanned tags were present in every image. |
+
+ {% endfor %}
+
+
+
+
+ {% else %}
+
Run analysis to quickly highlight tags that are the same or different across the series.
{% endif %}
Run analysis to quickly highlight tags that are the same or different across the series.