diff --git a/openstack_dashboard/dashboards/admin/networks/forms.py b/openstack_dashboard/dashboards/admin/networks/forms.py index bfe7f66914..00a3a3ae14 100644 --- a/openstack_dashboard/dashboards/admin/networks/forms.py +++ b/openstack_dashboard/dashboards/admin/networks/forms.py @@ -124,9 +124,14 @@ class CreateNetwork(forms.SelfHandlingForm): required=False, help_text=_("If checked, the network will be enabled.")) shared = forms.BooleanField(label=_("Shared"), - initial=False, required=False) + initial=False, required=False, + help_text=_("Share the network between " + "projects")) external = forms.BooleanField(label=_("External Network"), - initial=False, required=False) + initial=False, required=False, + help_text=_("Network has an external routing " + "facility that is not managed by " + "Neutron")) with_subnet = forms.BooleanField(label=_("Create Subnet"), widget=forms.CheckboxInput(attrs={ 'class': 'switchable', @@ -341,8 +346,19 @@ class UpdateNetwork(forms.SelfHandlingForm): label=_("Enable Admin State"), required=False, help_text=_("If checked, the network will be enabled.")) - shared = forms.BooleanField(label=_("Shared"), required=False) - external = forms.BooleanField(label=_("External Network"), required=False) + shared = forms.BooleanField( + label=_("Shared"), + required=False, + help_text=_("Share the network between projects") + ) + external = forms.BooleanField( + label=_("External Network"), + required=False, + help_text=_("Network has an external routing " + "facility that is not managed by " + "Neutron") + ) + failure_url = 'horizon:admin:networks:index' def handle(self, request, data): diff --git a/openstack_dashboard/dashboards/project/networks/forms.py b/openstack_dashboard/dashboards/project/networks/forms.py index 67194aee9b..d415454072 100644 --- a/openstack_dashboard/dashboards/project/networks/forms.py +++ b/openstack_dashboard/dashboards/project/networks/forms.py @@ -38,7 +38,11 @@ class UpdateNetwork(forms.SelfHandlingForm): label=_("Enable Admin State"), required=False, help_text=_("If checked, the network will be enabled.")) - shared = forms.BooleanField(label=_("Shared"), required=False) + shared = forms.BooleanField( + label=_("Shared"), + required=False, + help_text=_("Share the network between projects") + ) failure_url = 'horizon:project:networks:index' def __init__(self, request, *args, **kwargs): diff --git a/openstack_dashboard/dashboards/project/networks/workflows.py b/openstack_dashboard/dashboards/project/networks/workflows.py index dbbeda55f6..3829fc0d1b 100644 --- a/openstack_dashboard/dashboards/project/networks/workflows.py +++ b/openstack_dashboard/dashboards/project/networks/workflows.py @@ -44,7 +44,9 @@ class CreateNetworkInfoAction(workflows.Action): required=False, help_text=_("If checked, the network will be enabled.")) shared = forms.BooleanField(label=_("Shared"), initial=False, - required=False) + required=False, + help_text=_("Share the network between " + "projects")) with_subnet = forms.BooleanField(label=_("Create Subnet"), widget=forms.CheckboxInput(attrs={ 'class': 'switchable',