{% load humanize hc_extras %}
{% regroup checks by project as groups %}
{% spaceless %}
{% for group in groups %}
{{ group.grouper|mangle_link }}
|
Last Ping |
{% for check in group.list|sortchecks:sort %}
|
{% if check.name %}
{{ check.name|mangle_link }}
{% else %}
unnamed
{% endif %}
{% if check.tags %}
{% for tag in check.tags_list %}
|
{% endfor %}
{% endif %}
|
{% if check.last_ping %}
{{ check.last_ping|naturaltime }}
{% else %}
Never
{% endif %}
Details…
|
{% endfor %}
{% endfor %}
{% endspaceless %}