AC-502 Fixed links on home page status widget. Added home/hosts page.

This commit is contained in:
Chris Houseknecht
2013-11-11 19:16:16 +00:00
parent 38cb40d38b
commit 353858cf28
7 changed files with 206 additions and 47 deletions

View File

@@ -74,10 +74,10 @@ angular.module('JobStatusWidget', ['RestServices', 'Utilities'])
if (inventoryCount > 0) {
html += makeRow({
label: 'Inventories',
link: '/#/home/inventories',
link: '/#/inventories',
count: inventoryCount,
fail: inventoryFails,
fail_link: '/#/home/inventories/?has_active_failures=true'
fail_link: '/#/inventories/?has_active_failures=true'
});
rowcount++;
}
@@ -94,7 +94,7 @@ angular.module('JobStatusWidget', ['RestServices', 'Utilities'])
if (hostCount > 0) {
html += makeRow({
label: 'Hosts',
link: '#/home/hosts',
link: '/#/home/hosts',
count: hostCount,
fail: hostFails,
fail_link: '/#/home/hosts/?has_active_failures=true'