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:
parent
8a28d7c950
commit
a22f1387d1
@ -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 = {
|
||||
|
@ -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') }}"
|
||||
|
Loading…
Reference in New Issue
Block a user