Jobs page

Changed Job ID label to ID.
This commit is contained in:
Chris Houseknecht 2014-06-25 22:52:35 -04:00
parent 73255eace9
commit fa3896ccb8
4 changed files with 22 additions and 22 deletions

View File

@ -1,16 +1,16 @@
/*********************************************
* Copyright (c) 2014 AnsibleWorks, Inc.
*
* CompletedJobs.js
* CompletedJobs.js
*
*
*
*/
'use strict';
angular.module('CompletedJobsDefinition', [])
.value( 'CompletedJobsList', {
name: 'completed_jobs',
iterator: 'completed_job',
editTitle: 'Completed Jobs',
@ -18,10 +18,10 @@ angular.module('CompletedJobsDefinition', [])
index: false,
hover: true,
well: false,
fields: {
id: {
label: 'Job ID',
label: 'ID',
ngClick:"viewJobLog(completed_job.id)",
searchType: 'int',
columnClass: 'col-md-1 col-sm-2 col-xs-2',
@ -81,7 +81,7 @@ angular.module('CompletedJobsDefinition', [])
},
actions: { },
fieldActions: {
submit: {
icon: 'icon-rocket',

View File

@ -1,17 +1,17 @@
/*********************************************
* Copyright (c) 2014 AnsibleWorks, Inc.
*
* Jobs.js
* Jobs.js
* List view object for Team data model.
*
*
*
*/
'use strict';
angular.module('JobsListDefinition', [])
.value( 'JobsList', {
name: 'jobs',
iterator: 'job',
editTitle: 'Jobs',
@ -20,10 +20,10 @@ angular.module('JobsListDefinition', [])
hover: true,
well: false,
"class": 'jobs-table',
fields: {
id: {
label: 'Job ID',
label: 'ID',
key: true,
desc: true,
searchType: 'int'
@ -75,7 +75,7 @@ angular.module('JobsListDefinition', [])
dataPlacement: 'top'
}
},
actions: {
refresh: {
mode: 'all',

View File

@ -3,14 +3,14 @@
*
* QueuedJobs.js
*
*
*
*/
'use strict';
angular.module('QueuedJobsDefinition', [])
.value( 'QueuedJobsList', {
name: 'queued_jobs',
iterator: 'queued_job',
editTitle: 'Queued Jobs',
@ -18,10 +18,10 @@ angular.module('QueuedJobsDefinition', [])
index: false,
hover: true,
well: false,
fields: {
id: {
label: 'Job ID',
label: 'ID',
ngClick:"viewJobLog(queued_job.id)",
key: true,
desc: true,

View File

@ -1,16 +1,16 @@
/*********************************************
* Copyright (c) 2014 AnsibleWorks, Inc.
*
* RunningJobs.js
* RunningJobs.js
*
*
*
*/
'use strict';
angular.module('RunningJobsDefinition', [])
.value( 'RunningJobsList', {
name: 'running_jobs',
iterator: 'running_job',
editTitle: 'Completed Jobs',
@ -18,10 +18,10 @@ angular.module('RunningJobsDefinition', [])
index: false,
hover: true,
well: false,
fields: {
id: {
label: 'Job ID',
label: 'ID',
ngClick:"viewJobLog(running_job.id)",
key: true,
desc: true,
@ -66,7 +66,7 @@ angular.module('RunningJobsDefinition', [])
},
actions: { },
fieldActions: {
submit: {
icon: 'icon-rocket',