Applied same navigation/drop-down changes to jobs that we applied to inventory.

This commit is contained in:
chouseknecht
2013-09-20 16:42:58 -04:00
parent c47168dce2
commit 93e53034c1
7 changed files with 64 additions and 24 deletions

View File

@@ -22,12 +22,19 @@ angular.module('JobEventsListDefinition', [])
details: {
href: "/#/jobs/{{ job_id }}",
label: 'Details',
icon: 'icon-zoom-in'
icon: 'icon-zoom-in',
ngShow: "job_id !== null"
},
summary: {
hosts: {
href: "/#/jobs/{{ job_id }}/job_host_summaries",
label: 'Hosts',
icon: 'icon-laptop'
},
events: {
href: "/#/jobs/{{ job_id }}/job_events",
label: 'Events',
active: true,
icon: 'icon-list-ul'
}
},