diff --git a/awx/ui/client/src/organizations/linkout/organizations-linkout.route.js b/awx/ui/client/src/organizations/linkout/organizations-linkout.route.js index 5e498ab6ce..cbdb3e4706 100644 --- a/awx/ui/client/src/organizations/linkout/organizations-linkout.route.js +++ b/awx/ui/client/src/organizations/linkout/organizations-linkout.route.js @@ -104,6 +104,7 @@ export default [{ delete list.actions.add; // @issue Why is the delete action unavailable in this view? delete list.fieldActions.delete; + list.listTitle = N_('Teams') + ` | {{ name }}`; list.basePath = `${GetBasePath('organizations')}${$stateParams.organization_id}/teams`; list.emptyListText = "This list is populated by teams added from the Teams section"; return list; @@ -149,6 +150,8 @@ export default [{ delete list.actions.add; // @issue Why is the delete action unavailable in this view? delete list.fieldActions.delete; + list.title = true; + list.listTitle = N_('Inventories') + ` | {{ name }}`; list.basePath = `${GetBasePath('organizations')}${$stateParams.organization_id}/inventories`; list.emptyListText = "This list is populated by inventories added from the Inventories section"; return list; @@ -199,6 +202,7 @@ export default [{ delete list.actions; // @issue Why is the delete action unavailable in this view? delete list.fieldActions.delete; + list.listTitle = N_('Projects') + ` | {{ name }}`; list.basePath = `${GetBasePath('organizations')}${$stateParams.organization_id}/projects`; list.emptyListText = "This list is populated by projects added from the Projects section"; return list; @@ -259,7 +263,7 @@ export default [{ // @issue Why is the delete action unavailable in this view? delete list.fieldActions.delete; delete list.fields.type; - list.listTitle = N_('Job Templates'); + list.listTitle = N_('Job Templates') + ` | {{ name }}`; list.emptyListText = "This list is populated by job templates added from the Job Templates section"; list.iterator = 'template'; list.name = 'job_templates'; @@ -344,7 +348,7 @@ export default [{ ngClick: 'addUsers()' } }; - list.listTitle = 'Admins'; + list.listTitle = N_('Admins') + ` | {{ name }}`; return list; }] } diff --git a/awx/ui/client/src/organizations/list/organizations-list.partial.html b/awx/ui/client/src/organizations/list/organizations-list.partial.html index f266d2c670..62948393f3 100644 --- a/awx/ui/client/src/organizations/list/organizations-list.partial.html +++ b/awx/ui/client/src/organizations/list/organizations-list.partial.html @@ -52,7 +52,8 @@ ng-repeat="card in orgCards track by card.id">