diff --git a/openstack_dashboard/dashboards/admin/hypervisors/tables.py b/openstack_dashboard/dashboards/admin/hypervisors/tables.py index 307f41a333..174bf5d3a1 100644 --- a/openstack_dashboard/dashboards/admin/hypervisors/tables.py +++ b/openstack_dashboard/dashboards/admin/hypervisors/tables.py @@ -20,7 +20,7 @@ from horizon.templatetags import sizeformat class AdminHypervisorsTable(tables.DataTable): hostname = tables.Column("hypervisor_hostname", - link=("horizon:admin:hypervisors:detail"), + link="horizon:admin:hypervisors:detail", attrs={'data-type': 'naturalSort'}, verbose_name=_("Hostname")) @@ -66,7 +66,7 @@ class AdminHypervisorsTable(tables.DataTable): class AdminHypervisorInstancesTable(tables.DataTable): name = tables.Column("name", - link=("horizon:admin:instances:detail"), + link="horizon:admin:instances:detail", verbose_name=_("Instance Name")) instance_id = tables.Column("uuid", diff --git a/openstack_dashboard/dashboards/admin/instances/tables.py b/openstack_dashboard/dashboards/admin/instances/tables.py index 1b85b65ea8..5c80d5a7d1 100644 --- a/openstack_dashboard/dashboards/admin/instances/tables.py +++ b/openstack_dashboard/dashboards/admin/instances/tables.py @@ -125,7 +125,7 @@ class AdminInstancesTable(tables.DataTable): verbose_name=_("Host"), classes=('nowrap-col',)) name = tables.Column("name", - link=("horizon:admin:instances:detail"), + link="horizon:admin:instances:detail", verbose_name=_("Name")) image_name = tables.Column("image_name", verbose_name=_("Image Name")) diff --git a/openstack_dashboard/dashboards/identity/users/tables.py b/openstack_dashboard/dashboards/identity/users/tables.py index 0be0b3421f..92198b6ff7 100644 --- a/openstack_dashboard/dashboards/identity/users/tables.py +++ b/openstack_dashboard/dashboards/identity/users/tables.py @@ -204,7 +204,7 @@ class UsersTable(tables.DataTable): ("false", False) ) name = tables.Column('name', - link=("horizon:identity:users:detail"), + link="horizon:identity:users:detail", verbose_name=_('User Name'), form_field=forms.CharField(), update_action=UpdateCell) diff --git a/openstack_dashboard/dashboards/project/data_processing/clusters/tabs.py b/openstack_dashboard/dashboards/project/data_processing/clusters/tabs.py index a112ae7cd6..292c35af4b 100644 --- a/openstack_dashboard/dashboards/project/data_processing/clusters/tabs.py +++ b/openstack_dashboard/dashboards/project/data_processing/clusters/tabs.py @@ -133,7 +133,7 @@ class Instance(object): class InstancesTable(tables.DataTable): name = tables.Column("name", - link=("horizon:project:instances:detail"), + link="horizon:project:instances:detail", verbose_name=_("Name")) internal_ip = tables.Column("internal_ip", diff --git a/openstack_dashboard/dashboards/project/data_processing/job_binaries/tables.py b/openstack_dashboard/dashboards/project/data_processing/job_binaries/tables.py index fd6fd2a235..76c4ed4384 100644 --- a/openstack_dashboard/dashboards/project/data_processing/job_binaries/tables.py +++ b/openstack_dashboard/dashboards/project/data_processing/job_binaries/tables.py @@ -77,7 +77,7 @@ class JobBinariesTable(tables.DataTable): name = tables.Column( "name", verbose_name=_("Name"), - link=("horizon:project:data_processing.job_binaries:details")) + link="horizon:project:data_processing.job_binaries:details") type = tables.Column("url", verbose_name=_("Url")) description = tables.Column("description", diff --git a/openstack_dashboard/dashboards/project/data_processing/jobs/tables.py b/openstack_dashboard/dashboards/project/data_processing/jobs/tables.py index 4e603d3624..dc91c707c7 100644 --- a/openstack_dashboard/dashboards/project/data_processing/jobs/tables.py +++ b/openstack_dashboard/dashboards/project/data_processing/jobs/tables.py @@ -96,7 +96,7 @@ class ChoosePlugin(tables.LinkAction): class JobsTable(tables.DataTable): name = tables.Column("name", verbose_name=_("Name"), - link=("horizon:project:data_processing.jobs:details")) + link="horizon:project:data_processing.jobs:details") description = tables.Column("description", verbose_name=_("Description")) diff --git a/openstack_dashboard/dashboards/project/data_processing/nodegroup_templates/tables.py b/openstack_dashboard/dashboards/project/data_processing/nodegroup_templates/tables.py index 49c89c4c41..200b655f16 100644 --- a/openstack_dashboard/dashboards/project/data_processing/nodegroup_templates/tables.py +++ b/openstack_dashboard/dashboards/project/data_processing/nodegroup_templates/tables.py @@ -74,7 +74,7 @@ class NodegroupTemplatesTable(tables.DataTable): name = tables.Column( "name", verbose_name=_("Name"), - link=("horizon:project:data_processing.nodegroup_templates:details")) + link="horizon:project:data_processing.nodegroup_templates:details") plugin_name = tables.Column("plugin_name", verbose_name=_("Plugin")) hadoop_version = tables.Column("hadoop_version", diff --git a/openstack_dashboard/dashboards/project/databases/tables.py b/openstack_dashboard/dashboards/project/databases/tables.py index 0797fa0c52..949a073375 100644 --- a/openstack_dashboard/dashboards/project/databases/tables.py +++ b/openstack_dashboard/dashboards/project/databases/tables.py @@ -259,7 +259,7 @@ class InstancesTable(tables.DataTable): ("RESTART_REQUIRED", None), ) name = tables.Column("name", - link=("horizon:project:databases:detail"), + link="horizon:project:databases:detail", verbose_name=_("Instance Name")) datastore = tables.Column(get_datastore, verbose_name=_("Datastore")) @@ -326,7 +326,7 @@ def is_incremental(obj): class InstanceBackupsTable(tables.DataTable): name = tables.Column("name", - link=("horizon:project:database_backups:detail"), + link="horizon:project:database_backups:detail", verbose_name=_("Name")) created = tables.Column("created", verbose_name=_("Created"), filters=[filters.parse_isotime]) diff --git a/openstack_dashboard/dashboards/project/images/images/tables.py b/openstack_dashboard/dashboards/project/images/images/tables.py index 4fb1b21f15..152908ed6b 100644 --- a/openstack_dashboard/dashboards/project/images/images/tables.py +++ b/openstack_dashboard/dashboards/project/images/images/tables.py @@ -228,7 +228,7 @@ class ImagesTable(tables.DataTable): ("deleted", False), ) name = tables.Column(get_image_name, - link=("horizon:project:images:images:detail"), + link="horizon:project:images:images:detail", verbose_name=_("Image Name")) image_type = tables.Column(get_image_type, verbose_name=_("Type"), diff --git a/openstack_dashboard/dashboards/project/instances/tables.py b/openstack_dashboard/dashboards/project/instances/tables.py index 15527face0..0128a9078b 100644 --- a/openstack_dashboard/dashboards/project/instances/tables.py +++ b/openstack_dashboard/dashboards/project/instances/tables.py @@ -981,7 +981,7 @@ class InstancesTable(tables.DataTable): ("shelved_offloaded", True), ) name = tables.Column("name", - link=("horizon:project:instances:detail"), + link="horizon:project:instances:detail", verbose_name=_("Instance Name")) image_name = tables.Column("image_name", verbose_name=_("Image Name"))