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.

50 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. <br />
  16. {% include "emails/summary-html.html" %}
  17. <strong>Too many notifications?</strong>
  18. Visit the <a href="{{ notifications_url }}">Email Reports</a>
  19. page on {% site_name %} to set your notification preferences.
  20. {% else %}
  21. This is a {{ monthly_or_weekly }} report
  22. sent by <a href="{% site_root %}">{% site_name %}</a>.
  23. <br />
  24. {% include "emails/summary-downtimes-html.html" %}
  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 }}" target="_blank" style="color: #666666; text-decoration: underline;">
  37. Unsubscribe
  38. </a>
  39. {% endblock %}