mirror of
https://github.com/ansible/awx.git
synced 2026-02-25 06:56:00 -03:30
65 lines
1.7 KiB
JavaScript
65 lines
1.7 KiB
JavaScript
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* Organizations.js
|
|
* List view object for Organizations data model.
|
|
*
|
|
*
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
angular.module('OrganizationListDefinition', [])
|
|
.value('OrganizationList', {
|
|
|
|
name: 'organizations',
|
|
iterator: 'organization',
|
|
selectTitle: 'Add Organizations',
|
|
editTitle: 'Organizations',
|
|
hover: true,
|
|
index: false,
|
|
|
|
fields: {
|
|
name: {
|
|
key: true,
|
|
label: 'Name'
|
|
},
|
|
description: {
|
|
label: 'Description',
|
|
columnClass: 'hidden-sm hidden-xs'
|
|
}
|
|
},
|
|
|
|
actions: {
|
|
add: {
|
|
mode: 'all', // One of: edit, select, all
|
|
ngClick: 'addOrganization()',
|
|
awToolTip: 'Create a new organization'
|
|
},
|
|
stream: {
|
|
ngClick: "showActivity()",
|
|
awToolTip: "View Activity Stream",
|
|
mode: 'edit'
|
|
}
|
|
},
|
|
|
|
fieldActions: {
|
|
edit: {
|
|
label: 'Edit',
|
|
ngClick: "editOrganization(organization.id)",
|
|
icon: 'icon-edit',
|
|
"class": 'btn-xs btn-default',
|
|
awToolTip: 'Edit organization',
|
|
dataPlacement: 'top'
|
|
},
|
|
|
|
"delete": {
|
|
label: 'Delete',
|
|
ngClick: "deleteOrganization(organization.id, organization.name)",
|
|
icon: 'icon-trash',
|
|
"class": 'btn-xs btn-danger',
|
|
awToolTip: 'Delete organization',
|
|
dataPlacement: 'top'
|
|
}
|
|
}
|
|
}); |