{% extends "base.html" %} {% block title %}

{{ domain }}

{% endblock title %} {% block content %}
{% for task in tasks %} {% endfor %}
URL Check Expected Current status
{{ task.url }} {{ task.check }} {{ task.expected }} {% if task.status %} {% if task.status == "success" %} ✅ Success {% elif task.status == "error" %} ⚠ Error {% elif task.status == "failure" %} ❌ Failure {% elif task.status == "unknown" %} ❔ Unknown {% endif %} {% else %} Waiting to be checked {% endif %} view all
{% endblock content %}