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.

14 lines
429 B

  1. {% load humanize hc_extras %}
  2. {% if check.last_ping %}
  3. {{ check.last_ping|naturaltime }}
  4. {% if check.has_confirmation_link %}
  5. <br /><span class="label label-confirmation">confirmation link</span>
  6. {% elif check.clamped_last_duration %}
  7. <br />
  8. <span class="checks-subline-duration">
  9. <span class="ic-timer"></span> {{ check.clamped_last_duration|hms }}
  10. </span>
  11. {% endif %}
  12. {% else %}
  13. Never
  14. {% endif %}