mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 01:38:50 -03:30
Latest job_detail changes as of 5-16. Plus, AC-1279 Rename vars_prompt_on_launch to ask_variables_on_launch.
This commit is contained in:
@@ -653,6 +653,11 @@ function JobDetailController ($scope, $compile, $routeParams, ClearScope, Breadc
|
||||
SelectPlay({ scope: scope, id: scope.activePlay });
|
||||
}, 2000);
|
||||
};
|
||||
|
||||
scope.viewEvent = function(event_id) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
JobDetailController.$inject = [ '$scope', '$compile', '$routeParams', 'ClearScope', 'Breadcrumbs', 'LoadBreadCrumbs', 'GetBasePath', 'Wait',
|
||||
|
||||
@@ -614,6 +614,9 @@ function JobTemplatesEdit($scope, $rootScope, $compile, $location, $log, $routeP
|
||||
}
|
||||
|
||||
$scope.url = data.url;
|
||||
|
||||
$scope.ask_variables_on_launch = (data.ask_variables_on_launch) ? 'true' : 'false';
|
||||
master.ask_variables_on_launch = $scope.ask_variables_on_launch;
|
||||
|
||||
relatedSets = form.relatedSets(data.related);
|
||||
|
||||
|
||||
@@ -217,7 +217,7 @@ angular.module('JobTemplateFormDefinition', ['SchedulesListDefinition', 'Complet
|
||||
dataPlacement: 'right',
|
||||
dataContainer: "body"
|
||||
},
|
||||
vars_prompt_on_launch: {
|
||||
ask_variables_on_launch: {
|
||||
label: 'Prompt for Extra Variables',
|
||||
type: 'checkbox',
|
||||
addRequired: false,
|
||||
|
||||
@@ -400,12 +400,12 @@ function($location, Wait, GetBasePath, LookUpInit, JobTemplateForm, CredentialLi
|
||||
Rest.post(job_template).success(function (data) {
|
||||
new_job_id = data.id;
|
||||
launch_url = data.related.start;
|
||||
prompt_for_vars = data.vars_prompt_on_launch;
|
||||
prompt_for_vars = data.ask_variables_on_launch;
|
||||
new_job = data;
|
||||
if (data.passwords_needed_to_start.length > 0) {
|
||||
scope.$emit('PromptForPasswords', data.passwords_needed_to_start);
|
||||
}
|
||||
else if (data.vars_prompt_on_launch) {
|
||||
else if (data.ask_variables_on_launch) {
|
||||
scope.$emit('PromptForVars');
|
||||
}
|
||||
else {
|
||||
|
||||
@@ -1379,7 +1379,8 @@ input[type="checkbox"].checkbox-no-label {
|
||||
text-overflow: clip;*/
|
||||
}
|
||||
|
||||
#group-delete-dialog .help-container {
|
||||
#group-delete-dialog .help-container,
|
||||
#password-modal .help-container {
|
||||
.help-link,
|
||||
.help-link:active,
|
||||
.help-link:visited {
|
||||
|
||||
@@ -114,7 +114,7 @@
|
||||
<div id="hosts-table-detail-inner">
|
||||
<div class="row" ng-repeat="result in results = (hostResults | filter:{ status : searchAllStatus} | filter:{ task_id: activeTask })">
|
||||
<div class="col-lg-7 col-md-7 col-sm-7 col-xs-7 status-column">
|
||||
<a href="" ng-click="doSomething()" aw-tool-tip="Event Id: {{ result.id }} Status: {{ result.status }}. Click for details" data-placement="top"><i class="fa icon-job-{{ result.status }}"></i> {{ result.name }}</a>
|
||||
<a href="" ng-click="viewEvent(result.id)" aw-tool-tip="Event Id: {{ result.id }} Status: {{ result.status }}. Click for details" data-placement="top"><i class="fa icon-job-{{ result.status }}"></i> {{ result.name }}</a>
|
||||
</div>
|
||||
<div class="col-lg-5 col-md-5 col-sm-5 col-xs-5">
|
||||
{{ result.msg }}
|
||||
|
||||
Reference in New Issue
Block a user