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

Add dedicated views for nested group models

This commit is contained in:
Jeremy Stretch
2021-03-26 15:07:29 -04:00
parent b7e44a744d
commit 2820d26a0f
13 changed files with 382 additions and 11 deletions

View File

@@ -19,12 +19,14 @@ __all__ = (
#
# Rack groups
# Locations
#
class LocationTable(BaseTable):
pk = ToggleColumn()
name = MPTTColumn()
name = MPTTColumn(
linkify=True
)
site = tables.Column(
linkify=True
)