{% extends 'base.html' %} {% load extra %} {% block content %}

{{ check.name }}

{{ check.calculated_status|capfirst }}

{% if check.polymorphic_ctype.model == 'jenkinsstatuscheck' %} {% endif %}


Check results

{% if not checkresults %}
No results for this check
{% else %} {% for result in checkresults %} {% endfor %}
Status Time started Time complete Took (ms) Error
{{ result.status }} {{ result.time }} {{ result.time_complete }} {{ result.took }} {% autoescape off %}{{ result.error|default:"" }}{% endautoescape %}
{% endif %}

{% for service in check.service_set.all %} {% if service.hackpad_id or service.runbook_link%}

Documentation for linked service {{ service.name }}

{% if service.runbook_link %} {% endif %} {% if service.hackpad_id %} {% endif %}
{% endif %} {% endfor %}
{% endblock content %} {% block js %} {% load compress %} {{ block.super }} {% compress js %} {% endcompress %} {% endblock js %}