{% extends '../blank_with_menu.html' %}
{% block title %}Disk{% end %}
{% block content %}
{% for dev in devices %}
{{ dev['device'] }}
{% if (dev['mountpoint'] is not None) and (dev['mountpoint'] != dev['device']) %}
(mounted as "{{ dev['mountpoint'] }}")
{% end %}
{% if dev['fstype'] %}
in the {{ dev['fstype'] }} file system
{% end %}