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

Standardize usage of BooleanColumn

This commit is contained in:
Jeremy Stretch
2020-09-16 14:25:07 -04:00
parent 43f1fbf5b3
commit 2bc524a2ee
2 changed files with 5 additions and 5 deletions

View File

@ -415,7 +415,7 @@ class IPAddressDetailTable(IPAddressTable):
tenant = tables.TemplateColumn(
template_code=COL_TENANT
)
assigned = tables.BooleanColumn(
assigned = BooleanColumn(
accessor='assigned_object_id',
verbose_name='Assigned'
)