From 97c588a8ba0699f67fb5200b3e11aba2fa78ef05 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 10 Nov 2020 11:05:29 -0500 Subject: [PATCH] Clean up service form --- netbox/ipam/forms.py | 2 +- netbox/templates/ipam/service_edit.html | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/netbox/ipam/forms.py b/netbox/ipam/forms.py index 3feacc685..9da62b9fb 100644 --- a/netbox/ipam/forms.py +++ b/netbox/ipam/forms.py @@ -1314,7 +1314,7 @@ class ServiceForm(BootstrapMixin, CustomFieldModelForm): min_value=SERVICE_PORT_MIN, max_value=SERVICE_PORT_MAX ), - help_text="Comma-separated list of numeric unit IDs. A range may be specified using a hyphen." + help_text="Comma-separated list of one or more port numbers. A range may be specified using a hyphen." ) tags = DynamicModelMultipleChoiceField( queryset=Tag.objects.all(), diff --git a/netbox/templates/ipam/service_edit.html b/netbox/templates/ipam/service_edit.html index 48d1b11e3..b829a27a6 100644 --- a/netbox/templates/ipam/service_edit.html +++ b/netbox/templates/ipam/service_edit.html @@ -22,10 +22,11 @@ {% endif %} {% render_field form.name %}
- +
{{ form.protocol }} {{ form.ports }} + {{ form.ports.help_text }}
{% render_field form.ipaddresses %}