mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 23:17:32 -02:30
Merge pull request #3402 from AlexSCorey/3238-addFirstNameLastNameonUsersTeamList
add first name and last name to the headers row of the teams users list Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
@@ -95,13 +95,21 @@ export default ['i18n', function(i18n) {
|
|||||||
key: true,
|
key: true,
|
||||||
label: i18n._('User'),
|
label: i18n._('User'),
|
||||||
linkBase: 'users',
|
linkBase: 'users',
|
||||||
columnClass: 'col-sm-6'
|
columnClass: 'col-sm-3'
|
||||||
|
},
|
||||||
|
first_name: {
|
||||||
|
label: i18n._('First Name'),
|
||||||
|
columnClass: 'col-sm-3'
|
||||||
|
},
|
||||||
|
last_name: {
|
||||||
|
label: i18n._('Last Name'),
|
||||||
|
columnClass: 'col-sm-3'
|
||||||
},
|
},
|
||||||
role: {
|
role: {
|
||||||
label: i18n._('Role'),
|
label: i18n._('Role'),
|
||||||
type: 'role',
|
type: 'role',
|
||||||
nosort: true,
|
nosort: true,
|
||||||
columnClass: 'col-sm-6'
|
columnClass: 'col-sm-3'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user