From 04d810d5a5c2b068d2632578d00e58ed0c6a1367 Mon Sep 17 00:00:00 2001 From: Chris Houseknecht Date: Thu, 21 Nov 2013 18:38:17 +0000 Subject: [PATCH] AC-693 changed Summary to Host Summary --- awx/ui/static/js/lists/JobEvents.js | 10 +++++----- awx/ui/static/js/lists/JobHosts.js | 12 ++++++------ awx/ui/static/js/lists/Jobs.js | 4 ++-- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/awx/ui/static/js/lists/JobEvents.js b/awx/ui/static/js/lists/JobEvents.js index d3982856ef..89601af91b 100644 --- a/awx/ui/static/js/lists/JobEvents.js +++ b/awx/ui/static/js/lists/JobEvents.js @@ -25,16 +25,16 @@ angular.module('JobEventsListDefinition', []) icon: 'icon-zoom-in', ngShow: "job_id !== null" }, - hosts: { - href: "/#/jobs/{{ job_id }}/job_host_summaries", - label: 'Summary', - icon: 'icon-laptop' - }, events: { href: "/#/jobs/{{ job_id }}/job_events", label: 'Events', active: true, icon: 'icon-list-ul' + }, + hosts: { + href: "/#/jobs/{{ job_id }}/job_host_summaries", + label: 'Host Summary', + icon: 'icon-laptop' } }, diff --git a/awx/ui/static/js/lists/JobHosts.js b/awx/ui/static/js/lists/JobHosts.js index e5bec26d84..cc9db73d88 100644 --- a/awx/ui/static/js/lists/JobHosts.js +++ b/awx/ui/static/js/lists/JobHosts.js @@ -24,16 +24,16 @@ angular.module('JobHostDefinition', []) icon: 'icon-zoom-in', ngShow: "job_id !== null" }, - hosts: { - href: "/#/jobs/{{ job_id }}/job_host_summaries", - label: 'Summary', - active: true, - icon: 'icon-laptop' - }, events: { href: "/#/jobs/{{ job_id }}/job_events", label: 'Events', icon: 'icon-list-ul' + }, + hosts: { + href: "/#/jobs/{{ job_id }}/job_host_summaries", + label: 'Host Summary', + active: true, + icon: 'icon-laptop' } }, diff --git a/awx/ui/static/js/lists/Jobs.js b/awx/ui/static/js/lists/Jobs.js index 4f456ad0ab..3a73d4c017 100644 --- a/awx/ui/static/js/lists/Jobs.js +++ b/awx/ui/static/js/lists/Jobs.js @@ -103,9 +103,9 @@ angular.module('JobsListDefinition', []) 'class': 'btn-default btn-xs', options: [ { ngClick: "editJob(\{\{ job.id \}\}, '\{\{ job.summary_fields.job_template.name \}\}')", label: 'Status' }, - { ngClick: "viewSummary(\{{ job.id \}\}, '\{\{ job.summary_fields.job_template.name \}\}')", label: 'Summary', - ngHide: "job.status == 'new'" }, { ngClick: "viewEvents(\{{ job.id \}\}, '\{\{ job.summary_fields.job_template.name \}\}')", label: 'Events', + ngHide: "job.status == 'new'" }, + { ngClick: "viewSummary(\{{ job.id \}\}, '\{\{ job.summary_fields.job_template.name \}\}')", label: 'Host Summary', ngHide: "job.status == 'new'" } ] },