mirror of
https://github.com/ansible/awx.git
synced 2026-01-23 15:38:06 -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
79 lines
2.8 KiB
JavaScript
79 lines
2.8 KiB
JavaScript
/*************************************************
|
|
* Copyright (c) 2015 Ansible, Inc.
|
|
*
|
|
* All Rights Reserved
|
|
*************************************************/
|
|
|
|
/**
|
|
* @ngdoc function
|
|
* @name forms.function:CustomInventory
|
|
* @description This form is for adding/editing an organization
|
|
*/
|
|
|
|
export default
|
|
angular.module('CustomInventoryFormDefinition', [])
|
|
.value('CustomInventoryForm', {
|
|
|
|
addTitle: 'Create Custom Inventory', //Title in add mode
|
|
editTitle: '{{ name }}', //Title in edit mode
|
|
name: 'custom_inventory', //entity or model name in singular form
|
|
well: false,
|
|
showActions: false,
|
|
|
|
fields: {
|
|
name: {
|
|
label: 'Name',
|
|
type: 'text',
|
|
addRequired: true,
|
|
editRequired: true,
|
|
capitalize: false
|
|
},
|
|
description: {
|
|
label: 'Description',
|
|
type: 'text',
|
|
addRequired: false,
|
|
editRequired: false
|
|
},
|
|
organization: {
|
|
label: 'Organization',
|
|
type: 'lookup',
|
|
awRequiredWhen: {
|
|
variable: "orgrequired",
|
|
init: true
|
|
},
|
|
sourceModel: 'organization',
|
|
sourceField: 'name',
|
|
ngClick: 'lookUpOrganization()'
|
|
},
|
|
script: {
|
|
label: 'Custom Script',
|
|
type: 'textarea',
|
|
hintText: "Drag and drop an inventory script on the field below",
|
|
addRequired: true,
|
|
editRequired: true,
|
|
awDropFile: true,
|
|
'class': 'ssh-key-field',
|
|
rows: 10,
|
|
awPopOver: "<p>Drag and drop your custom inventory script file here or create one in the field to import your custom inventory. " +
|
|
"<br><br> Script must begin with a hashbang sequence: i.e.... #!/usr/bin/env python</p>",
|
|
dataTitle: 'Custom Script',
|
|
dataPlacement: 'right',
|
|
dataContainer: "body"
|
|
},
|
|
},
|
|
|
|
buttons: { //for now always generates <button> tags
|
|
save: {
|
|
ngClick: 'formSave()', //$scope.function to call on click, optional
|
|
ngDisabled: true //Disable when $pristine or $invalid, optional
|
|
},
|
|
reset: {
|
|
ngClick: 'formReset()',
|
|
ngDisabled: true //Disabled when $pristine
|
|
}
|
|
},
|
|
|
|
|
|
|
|
}); //OrganizationForm
|