{% extends 'base.html' %} {% load static %} {% block title %}{{ block.super }} - {{ instance.name }}{% endblock title %} {% block content %}

{{ instance.name }}

{{ instance.overall_status|lower|capfirst }}


Configuration

Address
{{ instance.address|urlize|default:"None configured" }}
Users watching
{% if not instance.users_to_notify.all %} No users subscribed {% else %} {{ instance.users_to_notify.all|join:", " }} {% endif %}
Alert types
{% if instance.email_alert %} Email{% endif %} {% if instance.hipchat_alert %} Hipchat{% endif %} {% if instance.sms_alert %} SMS{% endif %} {% if instance.telephone_alert %} Telephone{% endif %}

Status (24 hours)

Services

{% include 'cabotapp/_service_list.html' with services=instance.service_set.all %}

Status check report

{{ report_form.instance }}
{{ report_form.checks }}
{{ report_form.date_from }}
{{ report_form.date_to }}

{% endblock content %} {% block js %} {% load compress %} {% load jsonify %} {{ block.super }} {% compress js %} {% endcompress %} {% endblock js %}