fix: Ensure tenancy models have Meta.verbose_name_plural attribute

.#240 closes #239
This commit is contained in:
2024-08-15 23:47:42 +09:30
parent cafc5ce6e2
commit 95bb15238a
10 changed files with 73 additions and 3 deletions

View File

@ -20,6 +20,9 @@ class DeviceModel(DeviceCommonFieldsName, SaveHistory):
'name',
]
verbose_name_plural = 'Device Models'
manufacturer = models.ForeignKey(
Manufacturer,
on_delete=models.CASCADE,