mirror of
https://github.com/ansible/awx.git
synced 2026-02-20 04:30:05 -03:30
24 lines
762 B
JavaScript
24 lines
762 B
JavaScript
/*********************************************
|
|
* Copyright (c) 2014 AnsibleWorks, Inc.
|
|
*
|
|
* InventoryHosts.js
|
|
* Help object for Inventory-> Hosts page.
|
|
*
|
|
*
|
|
*/
|
|
angular.module('InventoryHostsHelpDefinition', [])
|
|
.value(
|
|
'InventoryHostsHelp', {
|
|
story: {
|
|
hdr: 'Managing Hosts',
|
|
steps: {
|
|
step1: {
|
|
intro: 'Start by selecting a group:',
|
|
img: { src: 'help003.png', maxWidth: 315 , maxHeight: 198 },
|
|
box: "On the group selector, click the name of a group. Hosts contained in the group" +
|
|
" will appear on the right.",
|
|
height: 500
|
|
}
|
|
}
|
|
}
|
|
}); |