{% load helpers %}
{% if error %} {% else %} {# Node Status Card #}
Oxidized Node Status {% if cached %} Cached {% endif %}
{% if external_url %} Open in Oxidized {% endif %}
Name Model Last Backup Status
{{ node_info.name|default:object.name }} {{ node_info.model|default:"-" }} {% if node_info.last %} {% if node_info.last.end %} {{ node_info.last.end }} {% else %} {{ node_info.last|default:"-" }} {% endif %} {% elif node_info.time %} {{ node_info.time }} {% else %} - {% endif %} {% with status=node_info.status %} {% if status == "success" %} {{ status }} {% elif status == "no_connection" or status == "timeout" %} {{ status }} {% elif status == "never" %} {{ status }} {% else %} {{ status|default:"unknown" }} {% endif %} {% endwith %}
{# Configuration Card #} {% if config_text %}
Latest Configuration
{{ config_text }}
{% elif config_error %} {% endif %} {% endif %}