{% extends 'commands.html' %} {% import "bootstrap/wtf.html" as wtf %} {% import "macros.html" as macros %} {% set sidebar_state = 'disabled' %} {% set btn_back = true %} {% block content %}

{{ _('Partition scheme mismatch') }}

{{ macros.cmd_selected_clients(selected_clients) }}
{{ _('Cannot proceed with this command, selected clients have non-uniform or valid partition scheme') }}
{% for idx in range(part_data | length) %} {% endfor %}
{{ _('Partitions') }} {{ _('Clients') }}
{% for disk_id, part_id, part_type, fs_type, part_size in part_data.get_partition_setup(idx) %}
Part {{ part_id }} | {{ fs_type }} | {{ (part_size / 1024) | int}} MiB
{% else %} {{ _('Empty') }} {% endfor %}
{% for ip in part_data.get_clients(idx) %}
{{ ip }}
{% endfor %}
{% endblock %}