{% extends 'commands.html' %} {% import "bootstrap/wtf.html" as wtf %} {% import "macros.html" as macros %} {% set sidebar_state = 'disabled' %} {% set btn_back = true %} {% block content %}
{{ _('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 %}
|