{% extends "base.html" %} {% block title %}{{ screen.name }} vs {{ capture.page_id }} - figma-audit{% endblock %} {% block content %} {% if fidelity == 'mismatch' %}
Suspect matching

These two screens do not seem to match. The comparison below is not reliable. Check the mapping in screen_mapping.yaml and rerun if necessary.

{% endif %}
Figma (reference)
{% if screen.image_path %} Figma: {{ screen.name }} {% else %}
Image not available
{% endif %}
Application
{% if capture.screenshot_path %} App: {{ capture.page_id }} {% else %}
Image not available
{% endif %}
{% if fidelity != 'mismatch' and discrepancies %}
{% endif %}

Discrepancies ({{ discrepancies | length }})

{% for d in discrepancies %}
{{ d.category }}{% if d.location %} - {{ d.location }}{% endif %}
{{ d.status }} {{ d.severity }}
{{ d.description }}
{% if d.figma_value or d.app_value %}
{% if d.figma_value %}Figma: {{ d.figma_value }}{% endif %} {% if d.app_value %}App: {{ d.app_value }}{% endif %}
{% endif %} {% if d.status == 'open' %}
{% endif %}
{% endfor %}
{% endblock %}