Fixing Neutron Subnet Details help text

Removing the '<' and '>' tags which were wrongly displayed in
the help text of the Subnet Details dialog for Neutron Networks /
Subnet create.

Closes-Bug: #1311820
Change-Id: I9e730a2d90a6174634c3233230e48e63549e1b9c
This commit is contained in:
Andres Buraschi 2014-04-23 15:27:46 -03:00
parent 84ca8a9da8
commit af8e4965cb
1 changed files with 3 additions and 3 deletions

View File

@ -167,8 +167,8 @@ class CreateSubnetDetailAction(workflows.Action):
allocation_pools = forms.CharField(
widget=forms.Textarea(),
label=_("Allocation Pools"),
help_text=_("IP address allocation pools. Each entry is "
"<start_ip_address>,<end_ip_address> "
help_text=_("IP address allocation pools. Each entry is: "
"start_ip_address,end_ip_address "
"(e.g., 192.168.1.100,192.168.1.120) "
"and one entry per line."),
required=False)
@ -182,7 +182,7 @@ class CreateSubnetDetailAction(workflows.Action):
widget=forms.widgets.Textarea(),
label=_("Host Routes"),
help_text=_("Additional routes announced to the hosts. "
"Each entry is <destination_cidr>,<nexthop> "
"Each entry is: destination_cidr,nexthop "
"(e.g., 192.168.200.0/24,10.56.1.254) "
"and one entry per line."),
required=False)