diff --git a/awx/ui/static/js/forms/Jobs.js b/awx/ui/static/js/forms/Jobs.js index abcfb688b9..f029829e21 100644 --- a/awx/ui/static/js/forms/Jobs.js +++ b/awx/ui/static/js/forms/Jobs.js @@ -144,6 +144,24 @@ angular.module('JobFormDefinition', []) dataTitle: 'Extra Variables', dataPlacement: 'left' }, + job_tags: { + label: 'Job Tags', + type: 'textarea', + rows: 1, + addRequired: false, + editRequired: false, + 'class': 'span12', + column: 2, + awPopOver: "

Provide a comma separated list of tags.

\n" + + "

Tags are useful when you have a large playbook, and you want to run a specific part of a play or task.

" + + "

For example, you might have a task consisiting of a long list of actions. Tag values can be assigned to each action. " + + "Suppose the actions have been assigned tag values of "configuration", "packages" and "install".

" + + "

If you just want to run the "configuration" and "packages" actions, you would enter the following here " + + "in the Job Tags field:<\p>\n" + + "

configuration,packages
\n", + dataTitle: "Job Tags", + dataPlacement: "left" + }, allow_callbacks: { label: 'Allow Callbacks', type: 'checkbox', diff --git a/awx/ui/static/js/lists/Teams.js b/awx/ui/static/js/lists/Teams.js index 3f71f18e9c..dd7701d1ef 100644 --- a/awx/ui/static/js/lists/Teams.js +++ b/awx/ui/static/js/lists/Teams.js @@ -40,7 +40,7 @@ angular.module('TeamsListDefinition', []) icon: 'icon-plus', mode: 'all', // One of: edit, select, all ngClick: 'addTeam()', - "class": 'btn-small', + "class": 'btn-small btn-success', awToolTip: 'Create a new team' } }, @@ -50,7 +50,7 @@ angular.module('TeamsListDefinition', []) label: 'Edit', ngClick: "editTeam(\{\{ team.id \}\})", icon: 'icon-edit', - "class": 'btn-small btn-success', + "class": 'btn-small', awToolTip: 'View/Edit team' },