{% extends "emails/base.html" %}
{% load humanize hc_extras %}
{% block content %}
Hello,
This is a
{% if nag_period == 3600 %}hourly{% endif %}
{% if nag_period == 86400 %}daily{% endif %}
reminder sent by {% site_name %}.
{% if num_down == 1%}
One check is currently DOWN:
{% else %}
{{ num_down }} checks are currently DOWN:
{% endif %}
{% include "emails/nag-summary-html.html" %}
Too many notifications?
Visit the Email Reports
page on {% site_name %} to set your notification preferences.
Cheers,
The {% site_name %} Team
{% endblock %}
{% block unsub %}
Unsubscribe
{% endblock %}