diff --git a/awx/ui/static/js/forms/Jobs.js b/awx/ui/static/js/forms/Jobs.js index 70d082a9c4..ceae69e3cd 100644 --- a/awx/ui/static/js/forms/Jobs.js +++ b/awx/ui/static/js/forms/Jobs.js @@ -19,7 +19,8 @@ angular.module('JobFormDefinition', []) navigationLinks: { details: { href: "/#/jobs/{{ job_id }}", - label: 'Details', + label: "\{\{ job_id + '- ' + name \}\}", + listLabel: 'Job Details', icon: 'icon-zoom-in', active: true, ngShow: "job_id !== null" diff --git a/awx/ui/static/js/lists/JobEvents.js b/awx/ui/static/js/lists/JobEvents.js index 7246c6bf78..57db0289a3 100644 --- a/awx/ui/static/js/lists/JobEvents.js +++ b/awx/ui/static/js/lists/JobEvents.js @@ -21,7 +21,7 @@ angular.module('JobEventsListDefinition', []) navigationLinks: { details: { href: "/#/jobs/{{ job_id }}", - label: 'Details', + label: 'Job Details', icon: 'icon-zoom-in', ngShow: "job_id !== null" }, diff --git a/awx/ui/static/js/lists/JobHosts.js b/awx/ui/static/js/lists/JobHosts.js index 8dfeca0f2d..011b75f386 100644 --- a/awx/ui/static/js/lists/JobHosts.js +++ b/awx/ui/static/js/lists/JobHosts.js @@ -19,7 +19,7 @@ angular.module('JobHostDefinition', []) navigationLinks: { details: { href: "/#/jobs/{{ job_id }}", - label: 'Details', + label: 'Job Details', icon: 'icon-zoom-in', ngShow: "job_id !== null" }, diff --git a/awx/ui/static/lib/ansible/form-generator.js b/awx/ui/static/lib/ansible/form-generator.js index 2ad63a61b8..85005e6a66 100644 --- a/awx/ui/static/lib/ansible/form-generator.js +++ b/awx/ui/static/lib/ansible/form-generator.js @@ -871,7 +871,7 @@ angular.module('FormGenerator', ['GeneratorHelpers', 'ngCookies']) navigation[itm].href + "\" "; html += (navigation[itm].active) ? "class=\"active\" " : ""; html += ">"; - html += navigation[itm].label; + html += (navigation[itm].listLabel) ? navigation[itm].listLabel : navigation[itm].label; html += (navigation[itm].active) ? " " : ""; html += "\n"; }