diff options
Diffstat (limited to 'Tools/QueueStatusServer/templates')
-rw-r--r-- | Tools/QueueStatusServer/templates/queuestatus.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Tools/QueueStatusServer/templates/queuestatus.html b/Tools/QueueStatusServer/templates/queuestatus.html index c68abf1..f5b4523 100644 --- a/Tools/QueueStatusServer/templates/queuestatus.html +++ b/Tools/QueueStatusServer/templates/queuestatus.html @@ -7,6 +7,22 @@ <body> <h1>{{ page_title }}</h1> +<h3>Summary</h3> +<div> +Last Pass: {{ last_pass.date|timesince }} ago +{% if not bot_id and last_pass.bot_id %} +by <a href="/queue-status/{{last_pass.queue_name}}/bots/{{last_pass.bot_id}}">{{ last_pass.bot_id }}</a> +{% endif %} +</div> +<div> +Last Boot: {{ last_boot.date|timesince }} ago +{% if not bot_id and last_boot.bot_id %} +by <a href="/queue-status/{{last_boot.queue_name}}/bots/{{last_boot.bot_id}}">{{ last_boot.bot_id }}</a> +{% endif %} +</div> +<div>7-day "Pass" count: {{ trailing_week_pass_count }}</div> +<div>30-day "Pass" count: {{ trailing_month_pass_count }}</div> + <h3>Recent Status</h3> <div class="status-details"> |