mirror of
https://github.com/ZwareBear/awx.git
synced 2026-05-14 15:58:38 -05:00
Inventory page, group status now working.
This commit is contained in:
@@ -32,14 +32,12 @@ angular.module('InventoriesListDefinition', [])
|
||||
icon: "{{ 'icon-cloud-' + inventory.syncStatus }}",
|
||||
awToolTip: "{{ inventory.syncTip }}",
|
||||
awTipPlacement: "top",
|
||||
awPopOver: "{{ inventory.syncPopOver }}",
|
||||
dataPlacement: "right"
|
||||
ngClick: "showGroupSummary($event, inventory.id)"
|
||||
},{
|
||||
icon: "{{ 'icon-job-' + inventory.hostsStatus }}",
|
||||
awToolTip: "{{ inventory.hostsTip }}",
|
||||
awTipPlacement: "top",
|
||||
awPopOver: "{{ inventory.hostsPopOver }}",
|
||||
dataPlacement: "right"
|
||||
ngClick: "showHostSummary($event, inventory.id)"
|
||||
}]
|
||||
},
|
||||
name: {
|
||||
@@ -106,7 +104,7 @@ angular.module('InventoriesListDefinition', [])
|
||||
},
|
||||
"delete": {
|
||||
label: 'Delete',
|
||||
ngClick: "deleteInventory(inventory.id, inventory.names)",
|
||||
ngClick: "deleteInventory(inventory.id, inventory.name)",
|
||||
awToolTip: 'Delete inventory',
|
||||
dataPlacement: 'top'
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ angular.module('InventoryHostsDefinition', [])
|
||||
awToolTip: "{{ host.badgeToolTip }}",
|
||||
awTipPlacement: 'top',
|
||||
dataPlacement: 'left',
|
||||
iconClass: "{{ 'fa icon-failures-' + host.has_active_failures }}",
|
||||
iconClass: "{{ 'fa icon-job-' + host.active_failures }}",
|
||||
id: 'active-failutes-action'
|
||||
},
|
||||
edit: {
|
||||
|
||||
Reference in New Issue
Block a user