{% extends "emails/base.html" %}
{% load humanize hc_extras %}
{% block content %}
Hello,
{% if nag %}
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/summary-html.html" %}
Too many notifications?
Visit the Email Reports
page on {% site_name %} to set your notification preferences.
{% else %}
This is a {{ monthly_or_weekly }} report
sent by {% site_name %}.
{% include "emails/summary-downtimes-html.html" %}
Just one more thing to check:
Do you have more cron jobs,
not yet on this list, that would benefit from monitoring?
Get the ball rolling by adding one more!
{% endif %}
Cheers,
The {% site_name %} Team
{% endblock %}
{% block unsub %}
Unsubscribe
{% endblock %}