mirror of
https://github.com/ansible/awx.git
synced 2026-03-26 05:15:02 -02:30
AC-503 Cloud inventory process results now visible.
This commit is contained in:
44
awx/ui/static/js/forms/InventoryStatus.js
Normal file
44
awx/ui/static/js/forms/InventoryStatus.js
Normal file
@@ -0,0 +1,44 @@
|
||||
/*********************************************
|
||||
* Copyright (c) 2013 AnsibleWorks, Inc.
|
||||
*
|
||||
* InventoryStatus.js
|
||||
* Form definition for Inventory Status -JSON view
|
||||
*
|
||||
*
|
||||
*/
|
||||
angular.module('InventoryStatusDefinition', [])
|
||||
.value(
|
||||
'InventoryStatusForm', {
|
||||
|
||||
name: 'inventory_update',
|
||||
editTitle: 'Inventory Status',
|
||||
well: false,
|
||||
'class': 'horizontal-narrow',
|
||||
|
||||
fields: {
|
||||
created: {
|
||||
label: 'Created',
|
||||
type: 'text',
|
||||
readonly: true
|
||||
},
|
||||
status: {
|
||||
label: 'Status',
|
||||
type: 'text',
|
||||
readonly: true
|
||||
},
|
||||
result_stdout: {
|
||||
label: 'Std Out',
|
||||
type: 'textarea',
|
||||
ngShow: "result_stdout",
|
||||
readonly: true,
|
||||
rows: 15
|
||||
},
|
||||
result_traceback: {
|
||||
label: 'Traceback',
|
||||
type: 'textarea',
|
||||
ngShow: "result_traceback",
|
||||
readonly: true,
|
||||
rows: 15
|
||||
}
|
||||
}
|
||||
}); //Form
|
||||
Reference in New Issue
Block a user