mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-08 08:38:16 -06:00
14731 remove status from table
This commit is contained in:
parent
578056ec0f
commit
d15d532644
@ -79,9 +79,6 @@ class CertifiedPluginTable(BaseTable):
|
|||||||
linkify=('core:plugin', [tables.A('slug')]),
|
linkify=('core:plugin', [tables.A('slug')]),
|
||||||
verbose_name=_('Name')
|
verbose_name=_('Name')
|
||||||
)
|
)
|
||||||
status = tables.Column(
|
|
||||||
verbose_name=_('Status')
|
|
||||||
)
|
|
||||||
author = tables.Column(
|
author = tables.Column(
|
||||||
verbose_name=_('Author')
|
verbose_name=_('Author')
|
||||||
)
|
)
|
||||||
@ -104,8 +101,8 @@ class CertifiedPluginTable(BaseTable):
|
|||||||
class Meta(BaseTable.Meta):
|
class Meta(BaseTable.Meta):
|
||||||
empty_text = _('No plugin data found')
|
empty_text = _('No plugin data found')
|
||||||
fields = (
|
fields = (
|
||||||
'name', 'status', 'author', 'is_local', 'is_installed', 'is_certified', 'created', 'updated',
|
'name', 'author', 'is_local', 'is_installed', 'is_certified', 'created', 'updated',
|
||||||
)
|
)
|
||||||
default_columns = (
|
default_columns = (
|
||||||
'name', 'status', 'author', 'is_local', 'is_installed', 'is_certified', 'created', 'updated',
|
'name', 'author', 'is_local', 'is_installed', 'is_certified', 'created', 'updated',
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user