1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 16:51:11 +03:00

adjust user tokens list labeling

This commit is contained in:
John Mitchell 2018-03-07 17:08:54 -05:00
parent 8a28d7c950
commit a22f1387d1
No known key found for this signature in database
GPG Key ID: FE6A9B5BD4EB5C94
2 changed files with 9 additions and 5 deletions

View File

@ -8,12 +8,12 @@ function ApplicationsStrings (BaseString) {
LIST_BREADCRUMB_LABEL: t.s('APPLICATIONS'),
ADD_BREADCRUMB_LABEL: t.s('CREATE APPLICATION'),
EDIT_BREADCRUMB_LABEL: t.s('EDIT APPLICATION'),
USER_LIST_BREADCRUMB_LABEL: t.s('USERS')
USER_LIST_BREADCRUMB_LABEL: t.s('TOKENS')
};
ns.tab = {
DETAILS: t.s('Details'),
USERS: t.s('Users')
USERS: t.s('Tokens')
};
ns.add = {

View File

@ -12,11 +12,15 @@
</div>
<at-list results="users">
<at-row ng-repeat="users in users">
<at-row ng-repeat="user in users">
<div class="at-Row-items">
<at-row-item
header-value="{{ user.name }}"
header-link="/#/users/{{ user.id }}">
header-value="{{ user.summary_fields.user.username }}"
header-link="/#/users/{{ user.summary_fields.user.id }}">
</at-row-item>
<at-row-item
label-value="{{:: vm.strings.get('list.ROW_ITEM_LABEL_DESCRIPTION') }}"
value="{{ user.description }}">
</at-row-item>
<at-row-item
label-value="{{:: vm.strings.get('list.ROW_ITEM_LABEL_ORGANIZATION') }}"