From 8ee14409c2f8039c3cb1bebfe940870dabf7e4c3 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 21 Nov 2024 11:46:51 -0500 Subject: [PATCH] Tweak help text --- netbox/dcim/forms/model_forms.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netbox/dcim/forms/model_forms.py b/netbox/dcim/forms/model_forms.py index 45593013c..8f9c4227d 100644 --- a/netbox/dcim/forms/model_forms.py +++ b/netbox/dcim/forms/model_forms.py @@ -911,9 +911,9 @@ class ModularComponentTemplateForm(ComponentTemplateForm): # Components attached to a module need to present this standardized substitution help text. self.fields['name'].help_text = _( - "Alphanumeric ranges are supported for bulk creation. Mixed cases and types " - "within a single range are not supported (example: [ge,xe]-0/0/[0-9]). The string " - "{module} will be replaced with the position of the assigned module, if any." + "Alphanumeric ranges are supported for bulk creation. Mixed cases and types within a single range are not " + "supported (example: [ge,xe]-0/0/[0-9]). The token {module}, if present, will be " + "automatically replaced with the position value when creating a new module." )