Skip to content

Commit

Permalink
Merge pull request netbox-community#634 from jsenecal/patch-2
Browse files Browse the repository at this point in the history
Fixed "Power Port" column name
  • Loading branch information
jeremystretch authored Oct 24, 2016
2 parents 9dced92 + 9c49ea8 commit 193dfc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/dcim/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ class PowerConnectionTable(BaseTable):
args=[Accessor('power_outlet.device.pk')], verbose_name='PDU')
power_outlet = tables.Column(verbose_name='Outlet')
device = tables.LinkColumn('dcim:device', args=[Accessor('device.pk')], verbose_name='Device')
name = tables.Column(verbose_name='Console port')
name = tables.Column(verbose_name='Power Port')

class Meta(BaseTable.Meta):
model = PowerPort
Expand Down

0 comments on commit 193dfc8

Please sign in to comment.