{% extends "base.html" %} {% load compress humanize staticfiles hc_extras %} {% block title %}My Checks - healthchecks.io{% endblock %} {% block content %}
{% if pings %}

Note: Dates and times are displayed in UTC.

{% for record in pings %} {% if record.ping %} {% else %} {% if record.down %} {% endif %} {% endif %} {% endfor %}
Date Time IP Protocol User Agent
{{ record.ping.created|date:"N j" }} {{ record.ping.created|date:"H:i" }}
{{ record.ping.remote_addr|default:"" }} {{ record.ping.scheme }} {{ record.ping.ua }}

No ping received for {{ record.date|timesince:record.prev_date }}

{% else %}
Log is empty. This check has not received any pings yet.
{% endif %}
{% endblock %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %}