{% load i18n sizeformat %}
{% trans "Name" %}
{{ cluster.name }}
{% trans "Project ID" %}
{% if cluster.tenant_id %}
{{ cluster.tenant_id }}
{% else %}
{{ cluster.project_id }}
{% endif %}
{% trans "ID" %}
{{ cluster.id }}
{% trans "Description" %}
{{ cluster.description|default:_("None") }}
{% trans "Status" %}
{{ cluster.status }}
{% trans "Status description" %}
{% if cluster.status_description %}
{{ cluster.status_description }}
{% else %}
{% trans "No description" %}
{% endif %}
{% if cluster.error_description %}

{% trans "Error Details" %}

{{ cluster.error_description }}

{% endif %}
{% trans "Plugin" %}
{{ cluster.plugin_name }}
{% trans "Version" %}
{{ cluster.hadoop_version }}
{% trans "Template" %}
{% if cluster_template %}
{{ cluster_template.name }}
{% else %}
{% trans "Template not specified" %}
{% endif %} {% if base_image.id %}
{% trans "Base Image" %}
{{ base_image.name }}
{% endif %} {% if network %}
{% trans "Neutron Management Network" %}
{{ network }}
{% endif %}
{% trans "Keypair" %}
{{ cluster.user_keypair_id }}
{% trans "Use auto-configuration" %}
{{ cluster.use_autoconfig }}
{% trans "Public" %}
{{ cluster.is_public|yesno }}
{% trans "Protected" %}
{{ cluster.is_protected|yesno }}
{% trans "Anti-affinity enabled for" %}
{% if cluster.anti_affinity %}
    {% for process in cluster.anti_affinity %}
  • {{ process }}
  • {% endfor %}
{% else %}
{% trans "no processes" %}
{% endif %}
{% for info_key, info_val in cluster.info.items %}
{{ info_key }}
{% for key, val in info_val.items %}
{% autoescape off %}{% blocktrans %}{{ key }}: {{ val }}{% endblocktrans %}{% endautoescape %}
{% endfor %} {% endfor %}