{% extends 'base.html' %} {% load i18n breadcrumb_nav %} {% block title %}{% trans "Physical Volume Details" %}{% endblock %} {% block main %}

{{ pv.lvm_pv_name }}

{% trans "Info" %}


{% trans "UUID" %}
{{ pv.uuid }}
{% trans "State" %}
{{ pv.pv_state }}
{% trans "Type" %}
{{ pv.pv_type }}
{% trans "Volume Group Name" %}
{{ pv.lvm_vg_name }}
{% trans "Physical Volume UUID" %}
{{ pv.lvm_pv_uuid }}
{% trans "Physical Volume Name" %}
{{ pv.lvm_pv_name }}
{% trans "Physical Volume Size" %}
{{ pv.lvm_pv_size | filesizeformat }}
{% trans "Physical Extents Total" %}
{{ pv.lvm_pe_total }}
{% trans "Physical Extents Allocated" %}
{{ pv.lvm_pe_alloced }}
{% trans "Disk or Partition UUID" %}
{{ pv.disk_or_part_uuid }}
{% trans "Disk or Partition Node" %}
{{ pv.disk_or_part_device_node }}
{% trans "Disk or Partition Path" %}
{{ pv.disk_or_part_device_path }}
{% trans "Created At" %}
{{ pv.created_at }}
{% trans "Updated At" %}
{{ pv.updated_at }}
{% endblock %}