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.

52 lines
1.3 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. {% if nag %}
  20. {% include "emails/summary-html.html" %}
  21. {% else %}
  22. {% include "emails/summary-downtimes-html.html" %}
  23. {% endif %}
  24. {% if nag %}
  25. <strong>Too many notifications?</strong>
  26. Visit the <a href="{{ notifications_url }}">Email Reports</a>
  27. page on {% site_name %} to set your notification preferences.
  28. {% else %}
  29. <strong>Just one more thing to check:</strong>
  30. Do you have more cron jobs,
  31. not yet on this list, that would benefit from monitoring?
  32. Get the ball rolling by adding one more!
  33. {% endif %}
  34. <br /><br />
  35. Cheers,<br>
  36. The {% site_name %} Team
  37. {% endblock %}
  38. {% block unsub %}
  39. <br>
  40. <a href="{{ unsub_link }}?ask=1" target="_blank" style="color: #666666; text-decoration: underline;">
  41. Unsubscribe
  42. </a>
  43. {% endblock %}