{% extends "layout.html" %} {% block body %}

How would you like to install Debian?



Proposed layout:

{% for disk in blockdevs["blockdevices"] if disk["name"] != "zram0" and disk["name"] != "loop0" and disk["name"] != "sr0" %}

{{ disk['name'] }} ({{(disk['size']/1024000000)|round(0)|int }} GB) - Serial: {{ disk['serial'] }}

{% for child in disk['children'] %}

{{ child['name'] }} ({{ (child['size']/1024000000)|round(2) }} GiB)

{{ child['mountpoint'] }} {{ child['fstype'] }}

{% endfor %} {% if disk['maj:min'] == "252:0" %}

{{ disk['name'] }} ({{ (disk['size']/1024000000)|round(2) }} GiB)

/dev/{{ disk['name'] }} swap

{% endif %}

{% endfor %}
{% endblock %}