1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Corrected manufacturer column name in DeviceTypeTable

This commit is contained in:
Jeremy Stretch
2016-07-25 17:06:10 -04:00
parent 450c51604c
commit 8e2a69af56

View File

@ -122,6 +122,7 @@ class RackImportTable(BaseTable):
model = Rack
fields = ('site', 'group', 'name', 'facility_id', 'u_height')
#
# Manufacturers
#
@ -144,6 +145,7 @@ class ManufacturerTable(BaseTable):
class DeviceTypeTable(BaseTable):
pk = ToggleColumn()
manufacturer = tables.Column(verbose_name='Manufacturer')
model = tables.LinkColumn('dcim:devicetype', args=[Accessor('pk')], verbose_name='Device Type')
class Meta(BaseTable.Meta):