{% load i18n sizeformat %}

{% trans "Port Overview" %}

{% trans "Port" %}


{% trans "Name" %}
{{ port.name|default:"None" }}
{% trans "ID" %}
{{ port.id|default:"None" }}
{% trans "Network ID" %}
{{ port.network_id|default:"None" }}
{% trans "Project ID" %}
{{ port.tenant_id|default:"-" }}
{% trans "Fixed IP" %}
{% if port.fixed_ips.items|length > 1 %} {% for ip in port.fixed_ips %} {% trans "IP address:" %} {{ ip.ip_address }}, {% trans "Subnet ID" %} {{ ip.subnet_id }}
{% endfor %} {% else %} "None" {% endif %}
{% trans "Mac Address" %}
{{ port.mac_address|default:"None" }}
{% trans "Status" %}
{{ port.status|default:"None" }}
{% trans "Admin State" %}
{{ port.admin_state|default:"None" }}
{% trans "Device ID" %}
{% if port.device_id|length > 1 %}
{{ port.device_id }}
{% else %}
No attached device
{% endif %}