{% extends "base.html" %} {% load static %} {% load compress %} {% block body_class %}call-home-status-page{% endblock %} {% block extra_head %} {% compress css %} {% endcompress %} {% endblock %} {% block content %}
Back
{% if systems %}
{% for system in systems %} {% endfor %}
Name Status
{{ system.name|upper }} {% if system.status == 'ok' %}OK{% endif %} {% if system.status == 'disabled' %}Call home is disabled{% endif %} {% if system.status == 'no_connection' %}Cannot connect to InfiniBox{% endif %} {% if system.status == 'no_config' %}InfiniBox not configured{% endif %} {% if system.status == 'delayed' %}Data is not being sent{% endif %}
{% endif %} {% endblock %}