diff --git a/netbox/templates/extras/inc/tags_panel.html b/netbox/templates/extras/inc/tags_panel.html
index 7eeab8ec9..2024d4ab7 100644
--- a/netbox/templates/extras/inc/tags_panel.html
+++ b/netbox/templates/extras/inc/tags_panel.html
@@ -4,7 +4,7 @@
Tags
- {% for tag in tags.unrestricted %}
+ {% for tag in tags.all %}
{% tag tag url %}
{% empty %}
No tags assigned
diff --git a/netbox/utilities/tables.py b/netbox/utilities/tables.py
index 5e277e633..10e408b43 100644
--- a/netbox/utilities/tables.py
+++ b/netbox/utilities/tables.py
@@ -151,7 +151,7 @@ class TagColumn(tables.TemplateColumn):
Display a list of tags assigned to the object.
"""
template_code = """
- {% for tag in value.all.unrestricted %}
+ {% for tag in value.all %}
{% include 'utilities/templatetags/tag.html' %}
{% empty %}
—