diff --git a/netbox/utilities/tables.py b/netbox/utilities/tables.py index 6fbdff038..0c067582d 100644 --- a/netbox/utilities/tables.py +++ b/netbox/utilities/tables.py @@ -31,6 +31,7 @@ def linkify_phone(value): return None return f"tel:{value.replace(' ', '')}" + def linkify_url(value): """ Render a URL as a hyperlink. @@ -39,6 +40,7 @@ def linkify_url(value): return None return value + def register_table_column(column, name, *tables): """ Register a custom column for use on one or more tables.