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.

25 lines
656 B

9 years ago
  1. {% extends "emails/base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. <h1>Hello,</h1>
  5. <p>
  6. This is a notification sent by <a href="{% site_root %}">{% site_name %}</a>.
  7. <br />
  8. The check <strong>{{ check.name_then_code }}</strong>
  9. has gone <strong>{{ check.status|upper }}</strong>.
  10. </p>
  11. <p>Here is a summary of all your checks:</p>
  12. {% include "emails/summary-html.html" %}
  13. {% if show_upgrade_note %}
  14. <p><strong>P.S.</strong>
  15. Find this service useful? Support it by upgrading to
  16. a <a href="https://healthchecks.io/pricing/">premium account</a>!
  17. </p>
  18. {% endif %}
  19. <p>Thanks,<br>The Healthchecks<span>.</span>io Team</p>
  20. {% endblock %}