diff --git a/netbox/netbox/tables/template_code.py b/netbox/netbox/tables/template_code.py index 6ba76217a..39a6863c6 100644 --- a/netbox/netbox/tables/template_code.py +++ b/netbox/netbox/tables/template_code.py @@ -1,11 +1,7 @@ SEARCH_RESULT_ATTRS = """ {% for name, value in record.display_attrs.items %} - {% with url=value.get_absolute_url %} - - {% if url %}{% endif %} - {{ value }} - {% if url %}{% endif %} - - {% endwith %} + + {{ value|linkify }} + {% endfor %} """