{% extends 'base.html' %} {% from '_helpers.html' import render_field, render_checkbox_field, render_button %} {% block content %}
{% if versions|length >= 1 %} {% endif %}
Change Detection: {{ "%.2f"|format(change_percentage) }}% of pixels changed {% if change_percentage > 0.1 %} ⚠ Change Detected {% else %} ✓ No Significant Change {% endif %}
{%- if versions|length >= 2 -%} {%- endif -%}

Interactive Comparison

Drag slider to compare Previous ({{ from_version|format_timestamp_timeago }}) vs Current ({{ to_version|format_timestamp_timeago }})
Previous Current
Previous screenshot
Current screenshot
Previous Current

Difference Visualization

Red = Changed Pixels
Download
Difference visualization with red highlights
{% if comparison_data and comparison_data.get('history') and comparison_data.history|length > 1 %}

Comparison History

Recent comparison results (last {{ comparison_data.history|length }} checks)

{% for entry in comparison_data.history|reverse %} {% endfor %}
Timestamp Change % Method Changed?
{{ entry.timestamp|format_timestamp_timeago }} {{ "%.2f"|format(entry.change_percentage) }}% {{ entry.method }} {% if entry.changed %} Yes {% else %} No {% endif %}
{% endif %}
{% endblock %}