Fix missing icon of Terminate instance

The icon of `Terminate instance` is `fa-off` had replaced
by `fa-power-off` in current xstatic-font-awesome package
which version is 4.2.0. the other deletion icon is `fa-remove`,
the patch use it as the `Terminate instance` icon.

Closes-Bug: 1425820
Change-Id: I6ad66c97626527aa5ffc1b1a09353685391f9b61
This commit is contained in:
jing.liuqing 2015-02-12 17:00:38 +08:00
parent 094cb67846
commit b6b558d4ac
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ class TerminateInstance(tables.BatchAction):
name = "terminate"
classes = ("btn-danger", )
icon = "off"
icon = "remove"
def action(self, request, obj_id):
api.trove.instance_delete(request, obj_id)

View File

@ -81,7 +81,7 @@ def is_deleting(instance):
class TerminateInstance(policy.PolicyTargetMixin, tables.BatchAction):
name = "terminate"
classes = ("btn-danger",)
icon = "off"
icon = "remove"
policy_rules = (("compute", "compute:delete"),)
@staticmethod