{% extends "base.html" %} {% load humanize %} {% block content %}

Hello {{ request.user.email }}

{% for check in checks %} {% endfor %}
Name Code Frequency Last Ping
{% if check.status == "new" %} {% elif now < check.alert_after %} {% else %} {% endif %}
{% csrf_token %}
{{ check.code }}
{% csrf_token %}
{% for label, value in timeout_choices %} {% if check.timeout == value %} {{ label }} {% endif %} {% endfor %}
{% if check.last_ping %} {{ check.last_ping|naturaltime }} {% else %} Never {% endif %} Setup Instructions
{% csrf_token %}
{% endblock %}