Add symbol equal "=" in several filter texts

Are some filters text that not finalized with the symbol equals "="
(like in the majority).

This filters are in:
  - Project --> Compute --> Instances ("Instance Name")
  - Admin --> System --> Images ("Min. Size (MB)", "Max. Size (MB)")
  - Admin --> System --> Instance ("Name")

Change-Id: I2ee0c51993349b227d3b2297ec5d6c556bacecf8
Closes-Bug: #1520997
This commit is contained in:
Floren Llanos 2015-11-27 01:45:00 +01:00
parent f3ec460a50
commit da1130792e
3 changed files with 4 additions and 4 deletions

View File

@ -71,8 +71,8 @@ class AdminImageFilterAction(tables.FilterAction):
filter_choices = (('name', _("Image Name ="), True),
('status', _('Status ='), True),
('disk_format', _('Format ='), True),
('size_min', _('Min. Size (MB)'), True),
('size_max', _('Max. Size (MB)'), True))
('size_min', _('Min. Size (MB) ='), True),
('size_max', _('Max. Size (MB) ='), True))
class AdminImagesTable(project_tables.ImagesTable):

View File

@ -101,7 +101,7 @@ class AdminInstanceFilterAction(tables.FilterAction):
filter_type = "server"
filter_choices = (('project', _("Project ="), True),
('host', _("Host ="), True),
('name', _("Name"), True),
('name', _("Name ="), True),
('ip', _("IPv4 Address ="), True),
('ip6', _("IPv6 Address ="), True),
('status', _("Status ="), True),

View File

@ -1106,7 +1106,7 @@ POWER_DISPLAY_CHOICES = (
class InstancesFilterAction(tables.FilterAction):
filter_type = "server"
filter_choices = (('name', _("Instance Name"), True),
filter_choices = (('name', _("Instance Name ="), True),
('status', _("Status ="), True),
('image', _("Image ID ="), True),
('flavor', _("Flavor ID ="), True))