{% for check in status %}

{{ check.website }}

Uptime: {{ check.ok_ratio }}

{% if check.last_ok.is_some() %}

Last OK: {{ check.last_ok.as_deref().unwrap() }}

{% endif %}
{% for result in check.bar_info.elems %}
{% endfor %}
{% if check.bar_info.first_time.is_some() && check.bar_info.last_time.is_some() %}
{{ check.bar_info.first_time.unwrap().render_nicely() }} {{ check.bar_info.last_time.unwrap().render_nicely() }}
{% endif %}
{% endfor %}