mirror of
https://github.com/ansible/awx.git
synced 2026-05-16 22:07:36 -02:30
adjust user tokens list labeling
This commit is contained in:
@@ -8,12 +8,12 @@ function ApplicationsStrings (BaseString) {
|
|||||||
LIST_BREADCRUMB_LABEL: t.s('APPLICATIONS'),
|
LIST_BREADCRUMB_LABEL: t.s('APPLICATIONS'),
|
||||||
ADD_BREADCRUMB_LABEL: t.s('CREATE APPLICATION'),
|
ADD_BREADCRUMB_LABEL: t.s('CREATE APPLICATION'),
|
||||||
EDIT_BREADCRUMB_LABEL: t.s('EDIT APPLICATION'),
|
EDIT_BREADCRUMB_LABEL: t.s('EDIT APPLICATION'),
|
||||||
USER_LIST_BREADCRUMB_LABEL: t.s('USERS')
|
USER_LIST_BREADCRUMB_LABEL: t.s('TOKENS')
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.tab = {
|
ns.tab = {
|
||||||
DETAILS: t.s('Details'),
|
DETAILS: t.s('Details'),
|
||||||
USERS: t.s('Users')
|
USERS: t.s('Tokens')
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.add = {
|
ns.add = {
|
||||||
|
|||||||
@@ -12,11 +12,15 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<at-list results="users">
|
<at-list results="users">
|
||||||
<at-row ng-repeat="users in users">
|
<at-row ng-repeat="user in users">
|
||||||
<div class="at-Row-items">
|
<div class="at-Row-items">
|
||||||
<at-row-item
|
<at-row-item
|
||||||
header-value="{{ user.name }}"
|
header-value="{{ user.summary_fields.user.username }}"
|
||||||
header-link="/#/users/{{ user.id }}">
|
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>
|
||||||
<at-row-item
|
<at-row-item
|
||||||
label-value="{{:: vm.strings.get('list.ROW_ITEM_LABEL_ORGANIZATION') }}"
|
label-value="{{:: vm.strings.get('list.ROW_ITEM_LABEL_ORGANIZATION') }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user