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

UI cleanup

This commit is contained in:
jeremystretch
2021-08-26 14:48:24 -04:00
parent 94b8d36065
commit 3203db07b7
5 changed files with 32 additions and 9 deletions

View File

@ -103,9 +103,18 @@ class WebhookTable(BaseTable):
)
content_types = ContentTypesColumn()
enabled = BooleanColumn()
type_create = BooleanColumn()
type_update = BooleanColumn()
type_delete = BooleanColumn()
type_create = BooleanColumn(
verbose_name='Create'
)
type_update = BooleanColumn(
verbose_name='Update'
)
type_delete = BooleanColumn(
verbose_name='Delete'
)
ssl_validation = BooleanColumn(
verbose_name='SSL Validation'
)
class Meta(BaseTable.Meta):
model = Webhook