Merge remote-tracking branch 'origin/7854-vdc' into 7854-vdc

This commit is contained in:
Daniel Sheppard 2022-11-10 16:04:46 -06:00
commit 690c011870

View File

@ -891,12 +891,11 @@ class VirtualDeviceContextTable(TenancyColumnsMixin, NetBoxTable):
name = tables.Column( name = tables.Column(
linkify=True linkify=True
) )
indentifier = tables.Column()
device = tables.TemplateColumn( device = tables.TemplateColumn(
order_by=('_name',), order_by=('_name',),
template_code=DEVICE_LINK template_code=DEVICE_LINK
) )
status = tables.Column() status = columns.ChoiceFieldColumn()
primary_ip = tables.Column( primary_ip = tables.Column(
linkify=True, linkify=True,
order_by=('primary_ip4', 'primary_ip6'), order_by=('primary_ip4', 'primary_ip6'),