{% load i18n sizeformat %}
{% trans "Name" %}
{{ template.name }}
{% trans "Project Id" %}
{{ template.tenant_id }}
{% trans "ID" %}
{{ template.id }}
{% trans "Description" %}
{{ template.description|default:_("None") }}
{% trans "Public" %}
{{ template.is_public|yesno }}
{% trans "Protected" %}
{{ template.is_protected|yesno }}
{% trans "Base Image" %}
{% if template.image_id and base_image_name %}
{{ base_image_name }}
{% else %}
{% trans "No image specified" %}
{% endif %}
{% trans "Flavor" %}
{{ flavor.name }}
{% if template.availability_zone %}
{% trans "Availability Zone" %}
{{ template.availability_zone }}
{% endif %} {% if template.floating_ip_pool %}
{% trans "Floating IP Pool" %}
{{ floating_ip_pool_name }}
{% endif %}
{% trans "Plugin" %}
{{ template.plugin_name }}
{% trans "Version" %}
{{ template.hadoop_version }}
{% trans "Use auto-configuration" %}
{{ template.use_autoconfig }}
{% trans "Proxy Gateway" %}
{{ template.is_proxy_gateway }}
{% trans "Auto Security Group" %}
{{ template.auto_security_group }}
{% trans "Security Groups" %}
    {% for group in security_groups %} {% if group.id %}
  • {{ group.name }}
  • {% else %}
  • {{ group.name }}
  • {% endif %} {% endfor %}
{% trans "Node Processes" %}
    {% for process in template.node_processes %}
  • {{ process }}
  • {% endfor %}

{% trans "HDFS placement" %}

{% if template.volumes_per_node %}
{% trans "Cinder volumes" %}
{% trans "Volumes per node" %}
{{ template.volumes_per_node }}
{% trans "Volumes size" %}
{{ template.volumes_size }}
{% trans "Volumes type" %}
{{ template.volume_type }}
{% trans "Volumes local to instance" %}
{{ template.volume_local_to_instance }}
{% if template.volumes_availability_zone %}
{% trans "Volumes Availability Zone" %}
{{ template.volumes_availability_zone }}
{% endif %} {% else %}
{% trans "Ephemeral drive" %}
{% endif %}