mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
28 lines
670 B
HTML
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 %}
|