Job detail page

Included the fa-external-link icon in the View stdout for more detail link in support of the garbled playbook.
This commit is contained in:
Chris Houseknecht 2014-08-13 19:19:08 -04:00
parent adbe2d182f
commit d445b29ae9

View File

@ -439,7 +439,7 @@ function JobDetailController ($location, $rootScope, $scope, $compile, $routePar
// if we are here, there are no plays and the job has failed, let the user know they may want to consult stdout
if (scope.job_status.status === 'failed' || scope.job_status.status === 'error' &&
(!scope.job_status.explanation)) {
scope.job_status.explanation = "<a href=\"/#/jobs/" + scope.job_id + "/stdout\" target=\"_blank\">View stdout for more detail</a>";
scope.job_status.explanation = "<a href=\"/#/jobs/" + scope.job_id + "/stdout\" target=\"_blank\">View stdout for more detail <i class=\"fa fa-external-link\"></i></a>";
}
}
data.results.forEach(function(event, idx) {