netbox/netbox/utilities/tables.py

8 lines
156 B
Python

def linkify_phone(value):
"""
Render a telephone number as a hyperlink.
"""
if value is None:
return None
return f"tel:{value}"