From 54769afe437e1f0a3c6cf51e12f9fe74d9482952 Mon Sep 17 00:00:00 2001 From: George Cox Date: Fri, 15 Jul 2022 14:13:37 +0100 Subject: [PATCH] CIRCUITTERMINATION_LINK -> CIRCUIT_TERMINATION_LINK --- netbox/circuits/tables/circuits.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox/circuits/tables/circuits.py b/netbox/circuits/tables/circuits.py index bd4092a20..2648878a1 100644 --- a/netbox/circuits/tables/circuits.py +++ b/netbox/circuits/tables/circuits.py @@ -11,7 +11,7 @@ __all__ = ( ) -CIRCUITTERMINATION_LINK = """ +CIRCUIT_TERMINATION_LINK = """ {% if value.location %} {{ value.location }} {% elif value.site %} @@ -52,11 +52,11 @@ class CircuitTable(NetBoxTable): status = columns.ChoiceFieldColumn() tenant = TenantColumn() termination_a = tables.TemplateColumn( - template_code=CIRCUITTERMINATION_LINK, + template_code=CIRCUIT_TERMINATION_LINK, verbose_name='Side A' ) termination_z = tables.TemplateColumn( - template_code=CIRCUITTERMINATION_LINK, + template_code=CIRCUIT_TERMINATION_LINK, verbose_name='Side Z' ) commit_rate = CommitRateColumn()