diff --git a/plinth/modules/udiskie/templates/udiskie.html b/plinth/modules/udiskie/templates/udiskie.html
index abccae023..d30ae9126 100644
--- a/plinth/modules/udiskie/templates/udiskie.html
+++ b/plinth/modules/udiskie/templates/udiskie.html
@@ -28,40 +28,48 @@
{% trans "Devices" %}
-
-
-
- | {% trans "Device" %} |
- {% trans "Label" %} |
- {% trans "Size" %} |
- {% trans "Filesystem" %} |
- {% trans "Mount Point" %} |
- {% trans "Actions" %} |
-
-
-
- {% for device in devices %}
+ {% if not devices %}
+
+ {% blocktrans trimmed %}
+ There are no additional storage devices attached.
+ {% endblocktrans %}
+
+ {% else %}
+
+
- | {{ device.device }} |
- {{ device.label }} |
- {{ device.size }} |
- {{ device.filesystem_type }} |
- {{ device.mount_points|join:', ' }} |
-
- {% if device.mount_points %}
-
- {% endif %}
- |
+ {% trans "Device" %} |
+ {% trans "Label" %} |
+ {% trans "Size" %} |
+ {% trans "Filesystem" %} |
+ {% trans "Mount Point" %} |
+ {% trans "Actions" %} |
- {% endfor %}
-
-
+
+
+ {% for device in devices %}
+
+ | {{ device.device }} |
+ {{ device.label }} |
+ {{ device.size }} |
+ {{ device.filesystem_type }} |
+ {{ device.mount_points|join:', ' }} |
+
+ {% if device.mount_points %}
+
+ {% endif %}
+ |
+
+ {% endfor %}
+
+
+ {% endif %}
{% endblock %}