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.

5 lines
388 B

  1. {% load humanize hc_extras %}
  2. Status | Name | Last Ping
  3. --------+------------------------------------------+-----------------------{% for check in checks %}
  4. {{ check.get_status_with_started|ljust:"6" }} | {{ check.name|default:'unnamed'|ljust:"40" }} | {% if check.last_ping %}{{ check.last_ping|naturaltime }}{% else %}Never{% endif %}{% endfor %}