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

{{ domain }}

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