diff --git a/netbox/ipam/tables.py b/netbox/ipam/tables.py
index 32af7c262..d7a64f7db 100644
--- a/netbox/ipam/tables.py
+++ b/netbox/ipam/tables.py
@@ -99,7 +99,7 @@ VLAN_LINK = """
"""
VLAN_PREFIXES = """
-{% for prefix in record.prefixes.unrestricted %}
+{% for prefix in record.prefixes.all %}
{{ prefix }}{% if not forloop.last %}
{% endif %}
{% empty %}
—