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." )