{% extends 'infrastructure/base.html' %} {% load i18n %} {% block title %}{{ title }}{% endblock %} {% block page_header %} {% include 'horizon/common/_page_header.html' with title=title %} {% endblock page_header %} {% block js %} {{ block.super }} {% endblock %} {% block main %}
{% trans "Powered" %} {{ node.power_state|default:"—" }}

{% trans "Deployment" %}

{% trans "Deployment Role" %}
{% if stack and role %}
{{ role.name }}
{% else %}
{% endif %}
{% trans "Provisioning" %}
{{ node.provisioning_status|default:"—" }} {% if node.instance_uuid %}
{{ node.instance.created }} {% endif %}
{% trans "Image" %}
{{ node.image_name|default:"—" }}
{% trans "Instance UUID" %}
{{ node.instance_uuid|default:"—" }}

{% trans "Inventory" %}

{% trans "Node UUID" %}
{{ node.uuid|default:"—" }}
{% trans "Driver" %}
{% trans "Network Cards" %}
{% trans "Registered HW" %}
{{ node.cpus|default:"—" }} {% trans "CPU" %}
{{ node.memory_mb|default:"—" }} {% trans "RAM (MB)" %}
{{ node.local_gb|default:"—" }} {% trans "HDD (GB)" %}

{% trans "Performance and Capacity" %}

{% if meter_conf %}
{% url 'horizon:infrastructure:nodes:performance' node.uuid as node_perf_url %}
{% for meter_label, url_part, y_max in meter_conf %}
{% include "infrastructure/_performance_chart.html" with label=meter_label y_max=y_max url=node_perf_url|add:"?"|add:url_part only %}
{% endfor %} {% else %} {% trans 'Metering service is not enabled.' %} {% endif %}
{% if node.uuid %}

{% trans "Errata" %}

{% endif %} {% endblock %}