diff --git a/docs/release-notes/version-2.8.md b/docs/release-notes/version-2.8.md index 0222a46ee..f57684c24 100644 --- a/docs/release-notes/version-2.8.md +++ b/docs/release-notes/version-2.8.md @@ -2,6 +2,10 @@ ## v2.8.9 (FUTURE) +### Enhancements + +* [#4899](https://github.com/netbox-community/netbox/issues/4899) - Add MAC address column to interfaces table + ### Bug Fixes * [#4875](https://github.com/netbox-community/netbox/issues/4875) - Fix documentation for image attachments diff --git a/netbox/dcim/tables.py b/netbox/dcim/tables.py index 5a1b06bed..93ef724e0 100644 --- a/netbox/dcim/tables.py +++ b/netbox/dcim/tables.py @@ -958,8 +958,8 @@ class InterfaceDetailTable(DeviceComponentDetailTable): class Meta(InterfaceTable.Meta): order_by = ('parent', 'name') - fields = ('pk', 'parent', 'name', 'enabled', 'type', 'description', 'cable') - sequence = ('pk', 'parent', 'name', 'enabled', 'type', 'description', 'cable') + fields = ('pk', 'parent', 'name', 'enabled', 'type', 'mac_address', 'description', 'cable') + default_columns = ('pk', 'parent', 'name', 'enabled', 'type', 'description', 'cable') class FrontPortTable(BaseTable):