{% extends "base.html" %} {% block title %}History: {{ resource.name }} - Supavision{% endblock %} {% block content %} {% if events %}
{% for event in events %}
{{ event.created_at }}
{{ event.type }} {% if event.summary %}{{ event.summary }}{% endif %} {% if event.report_id %} View report {% endif %}
{% if event.error %}
{{ event.error[:120] }}
{% endif %} {% if event.is_baseline %}
Baseline updated to v{{ event.version }}
{% endif %}
{% endfor %}
{% if has_more %}
Load more
{% endif %} {% else %}

No history yet

Run a health check or discovery to start building a timeline.

Back to Resource
{% endif %} {% endblock %}