summaryrefslogtreecommitdiff
path: root/openstack_dashboard
diff options
context:
space:
mode:
authorChristian Berendt <berendt@b1-systems.de>2013-07-04 11:31:35 +0200
committerChristian Berendt <berendt@b1-systems.de>2013-07-10 18:07:47 +0200
commita0810ff95c60657c14461c37a64d3ed04fff0115 (patch)
tree4cd9bd55076baa0d8504ad3a8cd733887a7af01c /openstack_dashboard
parentf827bf9b794eff5b6fe264cb8ad330e3d3e52270 (diff)
downloadtuskar-ui-a0810ff95c60657c14461c37a64d3ed04fff0115.tar.gz
added column "Image Name" to instances overview
fixes bug #1199869 Change-Id: I4cde4d6589cc1e8a1c3ecbb6a0d422720d2740a6
Diffstat (limited to 'openstack_dashboard')
-rw-r--r--openstack_dashboard/dashboards/admin/instances/tables.py2
-rw-r--r--openstack_dashboard/dashboards/project/instances/tables.py2
2 files changed, 4 insertions, 0 deletions
diff --git a/openstack_dashboard/dashboards/admin/instances/tables.py b/openstack_dashboard/dashboards/admin/instances/tables.py
index ac2b48ef..08b84ff1 100644
--- a/openstack_dashboard/dashboards/admin/instances/tables.py
+++ b/openstack_dashboard/dashboards/admin/instances/tables.py
@@ -128,6 +128,8 @@ class AdminInstancesTable(tables.DataTable):
name = tables.Column("name",
link=("horizon:admin:instances:detail"),
verbose_name=_("Name"))
+ image_name = tables.Column("image_name",
+ verbose_name=_("Image Name"))
ip = tables.Column(get_ips,
verbose_name=_("IP Address"),
attrs={'data-type': "ip"})
diff --git a/openstack_dashboard/dashboards/project/instances/tables.py b/openstack_dashboard/dashboards/project/instances/tables.py
index 989e95d9..e30a62a7 100644
--- a/openstack_dashboard/dashboards/project/instances/tables.py
+++ b/openstack_dashboard/dashboards/project/instances/tables.py
@@ -524,6 +524,8 @@ class InstancesTable(tables.DataTable):
name = tables.Column("name",
link=("horizon:project:instances:detail"),
verbose_name=_("Instance Name"))
+ image_name = tables.Column("image_name",
+ verbose_name=_("Image Name"))
ip = tables.Column(get_ips,
verbose_name=_("IP Address"),
attrs={'data-type': "ip"})