From fa64cc09feb03ef55663e14f443b6cb2ee398c48 Mon Sep 17 00:00:00 2001 From: dansheps Date: Mon, 25 Nov 2019 09:58:50 -0600 Subject: [PATCH] #3564 - Change interface table ordering --- netbox/dcim/tables.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netbox/dcim/tables.py b/netbox/dcim/tables.py index 0ffb1e258..e96cd254b 100644 --- a/netbox/dcim/tables.py +++ b/netbox/dcim/tables.py @@ -728,8 +728,8 @@ class InterfaceDetailTable(DeviceComponentDetailTable): class Meta(InterfaceTable.Meta, DeviceComponentDetailTable.Meta): order_by = ('parent', 'name') - fields = ('pk', 'parent', 'name', 'type', 'cable', 'description') - sequence = ('pk', 'parent', 'name', 'type', 'cable', 'description') + fields = ('pk', 'parent', 'name', 'type', 'description', 'cable') + sequence = ('pk', 'parent', 'name', 'type', 'description', 'cable') class FrontPortTable(BaseTable):