When I run netbox with software manager i got this error in log:
from utilities.tables import BaseTable, ToggleColumn, ColoredLabelColumn, TagColumn gunicorn[2836854]: ImportError: cannot import name 'BaseTable' from 'utilities.tables' (/opt/netbox/netbox/utilities/tables.py)
cat /opt/netbox/netbox/utilities/tables.py
def linkify_phone(value):
"""
Render a telephone number as a hyperlink.
"""
if value is None:
return None
return f"tel:{value}"
When I run netbox with software manager i got this error in log:
from utilities.tables import BaseTable, ToggleColumn, ColoredLabelColumn, TagColumn gunicorn[2836854]: ImportError: cannot import name 'BaseTable' from 'utilities.tables' (/opt/netbox/netbox/utilities/tables.py)