fix(itam): Add missing model.Meta attributes ordering and verbose_name

ref:  #345 #346
This commit is contained in:
2024-10-12 22:21:46 +09:30
parent a93e5625be
commit 4a27360b7c

View File

@ -52,6 +52,13 @@ class Device(DeviceCommonFieldsName, SaveHistory):
class Meta:
ordering = [
'name',
'organization'
]
verbose_name = 'Device'
verbose_name_plural = 'Devices'