mirror of
https://github.com/ansible/awx.git
synced 2026-01-25 00:11:23 -03:30
Adding the Copyright and All Rights Reserved to the JS files, as well as removing pwdmeter and 3dDonut chart (in lieu of d3.js donut chart) adding the legend and getting pie chart to donut adding data labels to donut chart working legend and tooltip job detail donut Ansible Copyright added to beginning of all JS files removing pwdmeter and d3donut fixing merge conflicts
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
/*************************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* All Rights Reserved
|
|
*************************************************/
|
|
|
|
/**
|
|
* @ngdoc function
|
|
* @name forms.function:ProjectStatus
|
|
* @description This form is for adding/editing project status
|
|
*/
|
|
|
|
export default
|
|
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",
|
|
'class': 'mono-space',
|
|
readonly: true,
|
|
rows: 15
|
|
},
|
|
result_traceback: {
|
|
label: 'Traceback',
|
|
type: 'textarea',
|
|
ngShow: "result_traceback",
|
|
'class': 'mono-space',
|
|
readonly: true,
|
|
rows: 15
|
|
}
|
|
}
|
|
}); //Form
|