You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

  1. {% extends "emails/base.html" %}
  2. {% load humanize hc_extras %}
  3. {% block content %}
  4. Hello,<br />
  5. {% if nag %}
  6. This is a
  7. {% if nag_period == 3600 %}hourly{% endif %}
  8. {% if nag_period == 86400 %}daily{% endif %}
  9. reminder sent by <a href="{% site_root %}">{% site_name %}</a>.<br />
  10. {% if num_down == 1%}
  11. One check is currently <strong>DOWN</strong>.
  12. {% else %}
  13. {{ num_down }} checks are currently <strong>DOWN</strong>.
  14. {% endif %}
  15. {% else %}
  16. This is a monthly report sent by <a href="{% site_root %}">{% site_name %}</a>.
  17. {% endif %}
  18. <br />
  19. {% include "emails/summary-html.html" %}
  20. {% if nag %}
  21. <strong>Too many notifications?</strong>
  22. Visit the <a href="{{ notifications_url }}">Email Reports</a>
  23. page on {% site_name %} to set your notification preferences.
  24. {% else %}
  25. <strong>Just one more thing to check:</strong>
  26. Do you have more cron jobs,
  27. not yet on this list, that would benefit from monitoring?
  28. Get the ball rolling by adding one more!
  29. {% endif %}
  30. <br /><br />
  31. Cheers,<br>
  32. The {% site_name %} Team
  33. {% endblock %}
  34. {% block unsub %}
  35. <br>
  36. <a href="{{ unsub_link }}?ask=1" target="_blank" style="color: #666666; text-decoration: underline;">
  37. Unsubscribe
  38. </a>
  39. {% endblock %}