mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-03 14:41:49 -05:00
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
/*********************************************
|
|
* Copyright (c) 2013 AnsibleWorks, Inc.
|
|
*
|
|
* ProjectStatus.js
|
|
* Form definition for Project Status -JSON view
|
|
*
|
|
*
|
|
*/
|
|
angular.module('ProjectStatusDefinition', [])
|
|
.value(
|
|
'ProjectStatusForm', {
|
|
|
|
name: 'project_update',
|
|
editTitle: 'SCM 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
|