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.
 
 
 
 
 

40 lines
879 B

{% extends "emails/base.html" %}
{% load hc_extras %}
{% block content %}
Hello,<br />
This is a notification sent by <a href="{% site_root %}">{% site_name %}</a>.
<br />
The check <strong>{{ check.name_then_code }}</strong>
has gone <strong>{{ check.status|upper }}</strong>.
<br /><br />
Here is a summary of your checks:
<br />
{% include "emails/summary-html.html" %}
Thanks,<br>
The {% escaped_site_name %} Team
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"url": "{{ check.details_url }}",
"name": "View in {% site_name%}"
},
"description": "View in {% site_name%}"
}
</script>
{% endblock %}
{% block unsub %}
<br>
<a href="{{ unsub_link }}" target="_blank" style="color: #666666; text-decoration: underline;">
Unsubscribe
</a>
{% endblock %}