From 0deae84ecb25e89f0dce68474c5854d0ecdc5365 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 29 Sep 2017 11:50:26 -0400 Subject: [PATCH] Renamed column --- netbox/dcim/tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/dcim/tables.py b/netbox/dcim/tables.py index 427f0bb42..a695958d9 100644 --- a/netbox/dcim/tables.py +++ b/netbox/dcim/tables.py @@ -362,7 +362,7 @@ class DeviceRoleTable(BaseTable): pk = ToggleColumn() name = tables.LinkColumn(verbose_name='Name') device_count = tables.Column(verbose_name='Devices') - color = tables.TemplateColumn(COLOR_LABEL, verbose_name='Color') + color = tables.TemplateColumn(COLOR_LABEL, verbose_name='Label') slug = tables.Column(verbose_name='Slug') actions = tables.TemplateColumn(template_code=DEVICEROLE_ACTIONS, attrs={'td': {'class': 'text-right'}}, verbose_name='')