Merge "Add symbol equal "=" in several filter texts"

This commit is contained in:
Jenkins 2015-12-02 11:48:16 +00:00 committed by Gerrit Code Review
commit a48491b3e2
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))