mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-08 14:40:05 +00:00
26 lines
646 B
HTML
26 lines
646 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" %}
|
|
|
|
<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 {% site_name %} Team
|
|
{% endblock %}
|
|
|
|
{% block unsub %}
|
|
<br>
|
|
<a href="{{ unsub_link }}" target="_blank" style="color: #666666; text-decoration: underline;">
|
|
Unsubscribe
|
|
</a>
|
|
{% endblock %}
|