{% extends 'generic/object.html' %} {% load i18n %} {% block content %}
{% trans "Proxmox HA Status" %}
{% if detail %}

{% trans "View cluster-wide HA status" %}

{% elif ha is None %}

{% trans "View cluster-wide HA status" %}

{% else %}
{% trans "SID" %}{{ ha.sid }}
{% trans "Type" %}{{ ha.type|default:"—"|upper }}
{% trans "Group" %}{{ ha.group|default:"—" }}
{% trans "Node" %}{{ ha.node|default:"—" }}
{% trans "Configured State" %} {% if ha.state == "started" %} {{ ha.state }} {% elif ha.state == "stopped" %} {{ ha.state }} {% elif ha.state == "disabled" %} {{ ha.state }} {% elif ha.state %} {{ ha.state }} {% else %}—{% endif %}
{% trans "CRM State" %} {% if ha.crm_state == "started" %} {{ ha.crm_state }} {% elif ha.crm_state == "stopped" %} {{ ha.crm_state }} {% elif ha.crm_state == "error" %} {{ ha.crm_state }} {% elif ha.crm_state %} {{ ha.crm_state }} {% else %}—{% endif %}
{% trans "Request State" %} {{ ha.request_state|default:"—" }}
{% trans "Status" %} {{ ha.status|default:"—" }}
{% trans "Cluster" %} {{ ha.cluster_name|default:"—" }}
{% endif %}
{% if ha %}
{% trans "HA Counters" %}
{% trans "Max Restart" %} {{ ha.max_restart|default:"—" }}
{% trans "Max Relocate" %} {{ ha.max_relocate|default:"—" }}
{% trans "Failback" %} {% if ha.failback is True %} {% trans "Enabled" %} {% elif ha.failback is False %} {% trans "Disabled" %} {% else %}—{% endif %}
{% trans "Comment" %} {{ ha.comment|default:"—" }}
{% endif %}
{% endblock %}