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

Hello {{ request.user.email }}

{% for check in checks %} {% endfor %}
Name Code Frequency Last Ping
{% if check.status == "up" %}   {% endif %} {% if check.status == "down" %}   {% endif %} {% if check.status == "new" %}   {% endif %}
{% csrf_token %}
{{ check.code }} {{ check.timeout }} {% if check.last_ping %} {{ check.last_ping|naturaltime }} {% else %} Never {% endif %} Setup Instructions
{% csrf_token %}
{% endblock %}