From e1c7c5aee44e838d35f9990cc6278df88c6de90a Mon Sep 17 00:00:00 2001 From: Brian Tiemann Date: Fri, 3 Jan 2025 11:00:17 -0500 Subject: [PATCH] Add 'created' and 'last_updated' fields to ModuleTable for consistency --- netbox/dcim/tables/modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/tables/modules.py b/netbox/dcim/tables/modules.py index 65c6bd1d39..6bd0d53b5e 100644 --- a/netbox/dcim/tables/modules.py +++ b/netbox/dcim/tables/modules.py @@ -80,7 +80,7 @@ class Meta(NetBoxTable.Meta): model = Module fields = ( 'pk', 'id', 'device', 'module_bay', 'manufacturer', 'module_type', 'status', 'serial', 'asset_tag', - 'description', 'comments', 'tags', + 'description', 'comments', 'tags', 'created', 'last_updated', ) default_columns = ( 'pk', 'id', 'device', 'module_bay', 'manufacturer', 'module_type', 'status', 'serial', 'asset_tag',