{% extends "base.html" %} {% macro row_status(value) %} {% if value == 'K' %} ✅ {% else %} ❌ {% endif %} {% endmacro %} {% block content %}

Update History

Results for the last {{max_log_rows}} library updates.

{% if log_rows %} {% for row in log_rows %} {% endfor %}
  Date Result
{{row_status(row.status)}} {{row.timestamp|human_date_time}} {{row.description}}
{% endif %}
{% endblock %}