{% load asciitable hc_extras humanize %}Hello, This is a {% if nag_period == 3600 %}hourly {% endif %}{% if nag_period == 86400 %}daily {% endif %}reminder sent by {% site_name %}. {% if num_down == 1%}One check is currently DOWN:{% else %}{{ num_down }} checks are currently DOWN:{% endif %} {% regroup checks by project as groups %}{% for group in groups %} Project "{{ group.grouper|safe }}" {% table %} {% row %} {% cell %}Status{% endcell %} {% cell %}Name{% endcell %} {% cell %}Last Ping{% endcell %} {% endrow %} {% for check in group.list|sortchecks:"name" %} {% row %} {% cell %}{{ check.get_status|uppercase_if_down }}{% endcell %} {% cell %}{{ check.name_then_code|safe }}{% endcell %} {% cell %}{% if check.last_ping %}{{ check.last_ping|naturaltime }}{% else %}Never{% endif %}{% endcell %} {% endrow %} {% endfor %} {% endtable %} {% endfor %} -- Cheers, {% site_name %}