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.

27 lines
653 B

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