Skip to content

Commit

Permalink
Add 'created' and 'last_updated' fields to ModuleTable for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
bctiemann committed Jan 3, 2025
1 parent e9fc6f8 commit e1c7c5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/dcim/tables/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit e1c7c5a

Please sign in to comment.