mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-21 15:17:57 +00:00
16 lines
440 B
HTML
16 lines
440 B
HTML
{% load hc_extras humanize %}
|
|
{{ check.desc|safe }}
|
|
|
|
{% if check.kind == "simple" %}
|
|
**Period:** {{ check.timeout|hc_duration }}
|
|
{% endif %}
|
|
|
|
{% if check.kind == "cron" or check.kind == "oncalendar" %}
|
|
**Schedule:** `{{ check.schedule|fix_asterisks }}`
|
|
|
|
**Time Zone:** {{ check.tz }}
|
|
{% endif %}
|
|
|
|
**Last Ping:** {% if ping %}{{ ping.created|naturaltime }}{% else %}never{% endif %}
|
|
|
|
[Full Details @ {% site_name %}]({{ check.cloaked_url }}) |