Skip to content

Commit

Permalink
Added an IPAM IP Address column to managed record tables
Browse files Browse the repository at this point in the history
  • Loading branch information
peteeckel committed Oct 16, 2023
1 parent b2c7957 commit 387164a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions netbox_dns/tables/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ class ManagedRecordTable(RecordBaseTable):
verbose_name="Address Record",
linkify=True,
)
ipam_ip_address = tables.Column(
verbose_name="IPAM IP Address",
linkify=True,
)
actions = ActionsColumn(actions=("changelog",))

class Meta(NetBoxTable.Meta):
Expand All @@ -104,6 +108,7 @@ class Meta(NetBoxTable.Meta):
"value",
"unicode_value",
"address_record",
"ipam_ip_address",
"active",
)
default_columns = (
Expand Down

0 comments on commit 387164a

Please sign in to comment.