{% extends 'base.html' %} {% block content %}
{{watch.error_text_ctime|format_seconds_ago}} seconds ago
            {{ last_error_text }}
        
{{watch.snapshot_error_screenshot_ctime|format_seconds_ago}} seconds ago
Current erroring screenshot from most recent request
{{watch.snapshot_text_ctime|format_timestamp_timeago}}
Grey lines are ignored Blue lines are triggers
{% for row in content %}
{{row.line}}
{% endfor %}
For now, Differences are performed on text, not graphically, only the latest screenshot is available.

{% if is_html_webdriver %} {% if screenshot %}
{{watch.snapshot_screenshot_ctime|format_timestamp_timeago}}
Current screenshot from most recent request {% else %} No screenshot available just yet! Try rechecking the page. {% endif %} {% else %} Screenshot requires Playwright/WebDriver enabled {% endif %}
{% endblock %}