|
|
@@ -32,6 +32,9 @@ class RegionTable(ContactsColumnMixin, NetBoxTable):
|
|
|
tags = columns.TagColumn(
|
|
|
url_name='dcim:region_list'
|
|
|
)
|
|
|
+ comments = columns.MarkdownColumn(
|
|
|
+ verbose_name=_('Comments'),
|
|
|
+ )
|
|
|
|
|
|
class Meta(NetBoxTable.Meta):
|
|
|
model = Region
|
|
|
@@ -59,6 +62,9 @@ class SiteGroupTable(ContactsColumnMixin, NetBoxTable):
|
|
|
tags = columns.TagColumn(
|
|
|
url_name='dcim:sitegroup_list'
|
|
|
)
|
|
|
+ comments = columns.MarkdownColumn(
|
|
|
+ verbose_name=_('Comments'),
|
|
|
+ )
|
|
|
|
|
|
class Meta(NetBoxTable.Meta):
|
|
|
model = SiteGroup
|
|
|
@@ -153,6 +159,9 @@ class LocationTable(TenancyColumnsMixin, ContactsColumnMixin, NetBoxTable):
|
|
|
actions = columns.ActionsColumn(
|
|
|
extra_buttons=LOCATION_BUTTONS
|
|
|
)
|
|
|
+ comments = columns.MarkdownColumn(
|
|
|
+ verbose_name=_('Comments'),
|
|
|
+ )
|
|
|
|
|
|
class Meta(NetBoxTable.Meta):
|
|
|
model = Location
|