healthchecks_healthchecks/templates/emails/report-body-html.html
2023-08-23 15:41:14 +03:00

28 lines
670 B
HTML

{% extends "emails/base.html" %}
{% load humanize hc_extras %}
{% block content %}
Hello,<br />
This is a {{ monthly_or_weekly }} report sent by
<a href="{% site_root %}">{% site_name %}</a>.<br />
{% include "emails/report-summary-html.html" %}
Just one more thing to check:
<strong>Do you have more cron jobs or periodic processes,
that are not yet on this list?</strong>
Set up monitoring for them, get notified when they don't run on time!
<br /><br />
Cheers,<br>
The {% site_name %} Team
{% endblock %}
{% block unsub %}
<br>
<a href="{{ unsub_link }}" target="_blank" style="color: #666666; text-decoration: underline;">
Unsubscribe
</a>
{% endblock %}