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.

27 lines
594 B

9 years ago
  1. {% extends "emails/base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. Hello,<br />
  5. This is a notification sent by <a href="{% site_root %}">{% site_name %}</a>.
  6. <br />
  7. The check <strong>{{ check.name_then_code }}</strong>
  8. has gone <strong>{{ check.status|upper }}</strong>.
  9. <br /><br />
  10. Here is a summary of your checks:
  11. <br />
  12. {% include "emails/summary-html.html" %}
  13. Thanks,<br>
  14. The {% escaped_site_name %} Team
  15. {% endblock %}
  16. {% block unsub %}
  17. <br>
  18. <a href="{{ unsub_link }}" target="_blank" style="color: #666666; text-decoration: underline;">
  19. Unsubscribe
  20. </a>
  21. {% endblock %}