diff --git a/netbox/templates/dcim/device.html b/netbox/templates/dcim/device.html
index 081397774..d38f60cb3 100644
--- a/netbox/templates/dcim/device.html
+++ b/netbox/templates/dcim/device.html
@@ -43,8 +43,10 @@
{% if device.parent_bay %}
{% with device.parent_bay.device as parent %}
- U{{ parent.position }} / {{ parent.get_face_display }}
- ({{ parent }} - {{ device.parent_bay.name }})
+ {{ parent }} {{ device.parent_bay.name }}
+ {% if parent.position %}
+ (U{{ parent.position }} / {{ parent.get_face_display }})
+ {% endif %}
{% endwith %}
{% elif device.rack and device.position %}
U{{ device.position }} / {{ device.get_face_display }}
|