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

Fixed actions column alignment

This commit is contained in:
Jeremy Stretch
2016-07-29 10:57:09 -04:00
parent d933d034e0
commit fa906c74c0

View File

@@ -22,7 +22,8 @@ class TenantGroupTable(BaseTable):
name = tables.LinkColumn(verbose_name='Name')
tenant_count = tables.Column(verbose_name='Tenants')
slug = tables.Column(verbose_name='Slug')
actions = tables.TemplateColumn(template_code=TENANTGROUP_ACTIONS, verbose_name='')
actions = tables.TemplateColumn(template_code=TENANTGROUP_ACTIONS, attrs={'td': {'class': 'text-right'}},
verbose_name='')
class Meta(BaseTable.Meta):
model = TenantGroup