{% load i18n %}

{% trans "VNF information" %}


{% trans "Name" %}
{{ vnf.vnf.name }}
{% trans "ID" %}
{{ vnf.vnf.id }}
{% trans "Tenant ID" %}
{{ vnf.vnf.tenant_id }}
{% trans "Description" %}
{{ vnf.vnf.description }}
{% trans "Status" %}
{{ vnf.vnf.status|title }}
{% trans "Created" %}
{{ vnf.vnf.created_at|parse_isotime }}
{% trans "Updated" %}
{{ vnf.vnf.updated_at|parse_isotime }}
{% trans "Stack ID" %}
{{ vnf.vnf.instance_id }}
{% trans "VNFD ID" %}
{{ vnf.vnf.vnfd_id }}
{% trans "VIM ID" %}
{{ vnf.vnf.vim_id }}
{% trans "Error reason" %}
{{ vnf.vnf.error_reason }}

{% trans "Mgmt IP Addresses" %}


{% for key, value in vnf.vnf.mgmt_url.items %}
{{ key|title }}
{{ value }}
{% endfor %}

{% trans "Placement Attributes" %}


{% for key, value in vnf.vnf.placement_attr.items %}
{{ key|title }}
{{ value }}
{% endfor %}

{% trans "Attributes" %}


      {{ vnf.vnf.attributes }}