mirror of
https://github.com/ansible/awx.git
synced 2026-07-08 06:48:04 -02:30
Fixed login dialog so that it now submits when Enter pressed in password field. Fixed more button more button labels.
This commit is contained in:
@@ -58,7 +58,7 @@ angular.module('CredentialsListDefinition', [])
|
||||
ngClick: "editCredential(\{\{ credential.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
label: 'Edit',
|
||||
class: 'btn-small',
|
||||
class: 'btn-small btn-success',
|
||||
awToolTip: 'View/Edit credential'
|
||||
},
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ angular.module('GroupListDefinition', [])
|
||||
label: 'Edit',
|
||||
ngClick: "editGroup(\{\{ group.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
class: 'btn-small',
|
||||
class: 'btn-small btn-success',
|
||||
awToolTip: 'View/Edit group'
|
||||
},
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ angular.module('HostListDefinition', [])
|
||||
edit: {
|
||||
label: 'Edit',
|
||||
ngClick: "editHost(\{\{ host.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
icon: 'icon-edit btn-success',
|
||||
class: 'btn-small',
|
||||
awToolTip: 'View/Edit host'
|
||||
},
|
||||
|
||||
@@ -49,7 +49,7 @@ angular.module('InventoriesListDefinition', [])
|
||||
label: 'Edit',
|
||||
ngClick: "editInventory(\{\{ inventory.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
class: 'btn-small',
|
||||
class: 'btn-small btn-success',
|
||||
awToolTip: 'View/Edit inventory'
|
||||
},
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ angular.module('JobEventsListDefinition', [])
|
||||
desc: true,
|
||||
searchType: 'int'
|
||||
},
|
||||
event: {
|
||||
event_display: {
|
||||
label: 'Event',
|
||||
link: true
|
||||
},
|
||||
@@ -57,16 +57,16 @@ angular.module('JobEventsListDefinition', [])
|
||||
mode: 'all'
|
||||
},
|
||||
edit: {
|
||||
label: 'View',
|
||||
label: 'Edit',
|
||||
ngClick: "jobDetails()",
|
||||
icon: 'icon-edit',
|
||||
class: 'btn-small btn-success',
|
||||
awToolTip: 'View/Edit detail',
|
||||
awToolTip: 'Edit job details',
|
||||
mode: 'all'
|
||||
},
|
||||
summary: {
|
||||
label: 'Hosts',
|
||||
icon: 'icon-filter',
|
||||
icon: 'icon-th-large',
|
||||
ngClick: "jobSummary()",
|
||||
class: 'btn-info btn-small',
|
||||
awToolTip: 'View host summary',
|
||||
@@ -78,9 +78,9 @@ angular.module('JobEventsListDefinition', [])
|
||||
edit: {
|
||||
label: 'View',
|
||||
ngClick: "editJobEvent(\{\{ jobevent.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
icon: 'icon-zoom-in',
|
||||
class: 'btn-small',
|
||||
awToolTip: 'View event detail',
|
||||
awToolTip: 'View event details',
|
||||
},
|
||||
}
|
||||
});
|
||||
|
||||
@@ -62,11 +62,11 @@ angular.module('JobHostDefinition', [])
|
||||
mode: 'all'
|
||||
},
|
||||
edit: {
|
||||
label: 'View',
|
||||
label: 'Edit',
|
||||
icon: 'icon-edit',
|
||||
ngClick: "jobDetails()",
|
||||
class: 'btn-success btn-small',
|
||||
awToolTip: 'View job detail',
|
||||
awToolTip: 'Edit job details',
|
||||
mode: 'all'
|
||||
},
|
||||
events: {
|
||||
|
||||
@@ -44,8 +44,8 @@ angular.module('JobTemplatesListDefinition', [])
|
||||
label: 'Edit',
|
||||
ngClick: "editJobTemplate(\{\{ job_template.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
awToolTip: 'View/Edit template',
|
||||
class: 'btn-small'
|
||||
awToolTip: 'Edit template',
|
||||
class: 'btn-small btn-success'
|
||||
},
|
||||
submit: {
|
||||
label: 'Launch',
|
||||
@@ -53,7 +53,7 @@ angular.module('JobTemplatesListDefinition', [])
|
||||
mode: 'all',
|
||||
class: 'btn-small btn-success',
|
||||
ngClick: 'submitJob(\{\{ job_template.id \}\})',
|
||||
awToolTip: 'Create and run a job using this template'
|
||||
awToolTip: 'Start a job using this template'
|
||||
},
|
||||
delete: {
|
||||
label: 'Delete',
|
||||
|
||||
@@ -62,14 +62,14 @@ angular.module('JobsListDefinition', [])
|
||||
fieldActions: {
|
||||
edit: {
|
||||
icon: 'icon-edit',
|
||||
label: 'View',
|
||||
label: 'Edit',
|
||||
ngClick: "editJob(\{\{ job.id \}\}, '\{\{ job.name \}\}')",
|
||||
class: 'btn-success btn-small',
|
||||
awToolTip: 'View/Edit detail',
|
||||
awToolTip: 'Edit job details',
|
||||
},
|
||||
summary: {
|
||||
label: 'Hosts',
|
||||
icon: 'icon-filter',
|
||||
icon: 'icon-th-large',
|
||||
ngClick: "viewSummary(\{{ job.id \}\}, '\{\{ job.name \}\}')",
|
||||
class: 'btn-info btn-small',
|
||||
awToolTip: 'View host summary',
|
||||
|
||||
@@ -42,7 +42,7 @@ angular.module('OrganizationListDefinition', [])
|
||||
label: 'Edit',
|
||||
ngClick: "editOrganization(\{\{ organization.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
class: 'btn-small',
|
||||
class: 'btn-small btn-success',
|
||||
awToolTip: 'View/Edit organization'
|
||||
},
|
||||
|
||||
|
||||
@@ -43,7 +43,7 @@ angular.module('ProjectsListDefinition', [])
|
||||
label: 'Edit',
|
||||
ngClick: "editProject(\{\{ project.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
class: 'btn-small',
|
||||
class: 'btn-small btn-success',
|
||||
awToolTip: 'View/edit project'
|
||||
},
|
||||
|
||||
|
||||
@@ -49,7 +49,7 @@ angular.module('TeamsListDefinition', [])
|
||||
label: 'Edit',
|
||||
ngClick: "editTeam(\{\{ team.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
class: 'btn-small',
|
||||
class: 'btn-small btn-success',
|
||||
awToolTip: 'View/Edit team'
|
||||
},
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@ angular.module('UserListDefinition', [])
|
||||
label: 'Edit',
|
||||
ngClick: "editUser(\{\{ user.id \}\})",
|
||||
icon: 'icon-edit',
|
||||
class: 'btn-small',
|
||||
class: 'btn-small btn-success',
|
||||
awToolTip: 'View/Edit user'
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user