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.

11 lines
384 B

  1. {% load humanize %}
  2. {% if check.last_ping %}
  3. <div class="last-ping" data-url="{% url 'hc-last-ping' check.code %}">
  4. {{ check.last_ping|naturaltime }}
  5. {% if check.has_confirmation_link %}
  6. <br /><span class="label label-confirmation">confirmation link</span>
  7. {% endif %}
  8. </div>
  9. {% else %}
  10. <div class="last-ping-never">Never</div>
  11. {% endif %}