mirror of
https://github.com/ansible/awx.git
synced 2026-02-20 04:30:05 -03:30
Job event detail page now working. Search expanded to work with boolean an integer types. Added new form generator layout. Fixed pagination bugs. Job cancel/delete working.
This commit is contained in:
@@ -21,7 +21,8 @@ angular.module('JobsListDefinition', [])
|
||||
id: {
|
||||
label: 'Job ID',
|
||||
key: true,
|
||||
desc: true
|
||||
desc: true,
|
||||
searchType: 'int'
|
||||
},
|
||||
created: {
|
||||
label: 'Creation Date',
|
||||
@@ -69,7 +70,7 @@ angular.module('JobsListDefinition', [])
|
||||
title: 'Cancel',
|
||||
icon: 'icon-minus-sign',
|
||||
mode: 'all',
|
||||
ngClick: 'cancel(\{\{ job.id \}\})',
|
||||
ngClick: 'deleteJob(\{\{ job.id \}\})',
|
||||
class: 'btn-danger btn-mini',
|
||||
awToolTip: 'Cancel job',
|
||||
ngDisabled: "job.status == 'error' || job.status == 'failed'"
|
||||
|
||||
Reference in New Issue
Block a user