diff --git a/docs/models/wireless/wirelesslink.md b/docs/models/wireless/wirelesslink.md index c9b331570..8018c0d16 100644 --- a/docs/models/wireless/wirelesslink.md +++ b/docs/models/wireless/wirelesslink.md @@ -40,3 +40,7 @@ The security cipher used to apply wireless authentication. Options include: ### Pre-Shared Key The security key configured on each client to grant access to the secured wireless LAN. This applies only to certain authentication types. + +### Length + +The numeric length of the link, including a unit designation (e.g. 100 meters or 25 feet). diff --git a/netbox/templates/wireless/wirelesslink.html b/netbox/templates/wireless/wirelesslink.html index 3237c9ab8..4c606c092 100644 --- a/netbox/templates/wireless/wirelesslink.html +++ b/netbox/templates/wireless/wirelesslink.html @@ -34,6 +34,16 @@ {% trans "Description" %} {{ object.description|placeholder }} + + {% trans "Length" %} + + {% if object.length is not None %} + {{ object.length|floatformat }} {{ object.get_length_unit_display }} + {% else %} + {{ ''|placeholder }} + {% endif %} + + {% include 'inc/panels/tags.html' %}