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.

32 lines
707 B

  1. {% extends "emails/base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. The check <a href="{{ check.details_url }}">{{ check.name_then_code|mangle_link }}</a>
  5. has gone <strong>{{ check.status|upper }}</strong>.
  6. <br>
  7. {% if check.status == "down" and check.desc %}
  8. Additional notes:<br><br>
  9. <div style="padding: 10px 15px; background: #F2F4F6;">
  10. {{ check.desc|linebreaksbr|urlize }}
  11. </div>
  12. {% endif %}
  13. <br />
  14. A summary of your checks:
  15. <br />
  16. {% include "emails/summary-html.html" %}
  17. Thanks,<br>
  18. The {% site_name %} Team
  19. {% endblock %}
  20. {% block unsub %}
  21. <br>
  22. <a href="{{ unsub_link }}?ask=1" target="_blank" style="color: #666666; text-decoration: underline;">
  23. Unsubscribe
  24. </a>
  25. {% endblock %}