Add icons for Heat Stacks BatchActions

Preview, Check, Suspend, and Resume actions are missing icons.

Change-Id: Ide04d2f3707b81a5d09480a80214a8626a66f93f
Closes-Bug: #1500962
This commit is contained in:
Cindy Lu 2015-09-28 13:32:37 -07:00
parent 223f2ebb5e
commit f430ea0189
1 changed files with 4 additions and 0 deletions

View File

@ -41,6 +41,7 @@ class PreviewStack(tables.LinkAction):
verbose_name = _("Preview Stack")
url = "horizon:project:stacks:preview_template"
classes = ("ajax-modal",)
icon = "eye"
policy_rules = (("orchestration", "cloudformation:PreviewStack"),)
@ -48,6 +49,7 @@ class CheckStack(tables.BatchAction):
name = "check"
verbose_name = _("Check Stack")
policy_rules = (("orchestration", "cloudformation:CheckStack"),)
icon = "check-square"
@staticmethod
def action_present(count):
@ -73,6 +75,7 @@ class SuspendStack(tables.BatchAction):
name = "suspend"
verbose_name = _("Suspend Stack")
policy_rules = (("orchestration", "cloudformation:SuspendStack"),)
icon = "pause"
@staticmethod
def action_present(count):
@ -98,6 +101,7 @@ class ResumeStack(tables.BatchAction):
name = "resume"
verbose_name = _("Resume Stack")
policy_rules = (("orchestration", "cloudformation:ResumeStack"),)
icon = "play"
@staticmethod
def action_present(count):