{% extends "layout.html" %} {% block body %}
The following disk will be erased:
{% for disk in blockdevs["blockdevices"] if disk["name"] == diskname %} {% set disk_size = disk['size'] %}{{ disk['name'] }}: {{ disk['model'] }} - {{ disk['tran'] }} disk ({{(disk['size']/1024000000)|round(0)|int }} GB) - Serial: {{ disk['serial'] }}
| Partition | Type | Mount Point | Label | Size | {% for child in disk['children'] %}
|---|---|---|---|---|
| {{ child['name'] }} | {{ child['fstype'] }} | {{ child['mountpoint'] }} | {{ child['label'] }} | {{ (child['size']/1024000000)|round(2) }} GiB |
This layout will be created:
{% for disk in blockdevs["blockdevices"] if disk["name"] == diskname %} {% set disk_size = disk['size'] %}New GPT Partition Table on {{ disk['name'] }}
| Partition | Type | Mount Point | Label | Size | {% for partition in partitions['command_set'] if partition['action-type'] == 'newpart' %}
|---|---|---|---|---|
| {{ partition['device'] }} | {{ partition['fstype'] }} | {{ partition['mountpoint'] }} | {{ partition['label'] }} | {{ partition['size'] }} |