healthchecks/templates/emails/report-body-html.html

28 lines
653 B
HTML

{% extends "emails/base.html" %}
{% load humanize hc_extras %}
{% block content %}
Hello,<br />
This is a monthly report sent by <a href="{% site_root %}">{% site_name %}</a>.
<br />
{% include "emails/summary-html.html" %}
<strong>Just one more thing to check:</strong>
Do you have more cron jobs,
not yet on this list, that would benefit from monitoring?
Get the ball rolling by adding one more!
<br /><br />
Cheers,<br>
The {% escaped_site_name %} Team
{% endblock %}
{% block unsub %}
<br>
<a href="{{ unsub_link }}" target="_blank" style="color: #666666; text-decoration: underline;">
Unsubscribe from Monthly Reports
</a>
{% endblock %}