AC-455 Replaced job.name with job.template. Re-configured line item actions so that buttons now have labels, making the page consistent with the rest of the applicaiton.

This commit is contained in:
chouseknecht
2013-09-16 10:13:11 -04:00
parent 4b5620806c
commit 2e805f75a1
4 changed files with 47 additions and 20 deletions

View File

@@ -11,7 +11,7 @@ angular.module('JobFormDefinition', [])
'JobForm', {
addTitle: 'Create Job', //Legend in add mode
editTitle: '{{ name }}', //Legend in edit mode
editTitle: '{{ id }} - {{ name }}', //Legend in edit mode
name: 'jobs',
well: true,
twoColumns: true,
@@ -33,10 +33,11 @@ angular.module('JobFormDefinition', [])
fields: {
name: {
label: 'Name',
label: 'Job Template',
type: 'text',
addRequired: true,
editRequired: true,
addRequired: false,
editRequired: false,
readonly: true,
column: 1
},
description: {