|
|
|
|
@ -12,7 +12,8 @@
|
|
|
|
|
type="button"
|
|
|
|
|
(click)="add()"
|
|
|
|
|
>
|
|
|
|
|
<i class="fa fa-plus mr-1"></i> <span>{{ 'AbpIdentity::NewUser' | abpLocalization }}</span>
|
|
|
|
|
<i class="fa fa-plus mr-1"></i>
|
|
|
|
|
<span>{{ 'AbpIdentity::NewUser' | abpLocalization }}</span>
|
|
|
|
|
</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
@ -59,12 +60,21 @@
|
|
|
|
|
<th>{{ 'AbpIdentity::Actions' | abpLocalization }}</th>
|
|
|
|
|
<th pResizableColumn (click)="sortOrderIcon.sort('userName')">
|
|
|
|
|
{{ 'AbpIdentity::UserName' | abpLocalization }}
|
|
|
|
|
<abp-sort-order-icon #sortOrderIcon key="userName" [(selectedKey)]="sortKey" [(order)]="sortOrder">
|
|
|
|
|
<abp-sort-order-icon
|
|
|
|
|
#sortOrderIcon
|
|
|
|
|
key="userName"
|
|
|
|
|
[(selectedKey)]="sortKey"
|
|
|
|
|
[(order)]="sortOrder"
|
|
|
|
|
>
|
|
|
|
|
</abp-sort-order-icon>
|
|
|
|
|
</th>
|
|
|
|
|
<th pResizableColumn (click)="sortOrderIcon.sort('email')">
|
|
|
|
|
{{ 'AbpIdentity::EmailAddress' | abpLocalization }}
|
|
|
|
|
<abp-sort-order-icon key="email" [(selectedKey)]="sortKey" [(order)]="sortOrder"></abp-sort-order-icon>
|
|
|
|
|
<abp-sort-order-icon
|
|
|
|
|
key="email"
|
|
|
|
|
[(selectedKey)]="sortKey"
|
|
|
|
|
[(order)]="sortOrder"
|
|
|
|
|
></abp-sort-order-icon>
|
|
|
|
|
</th>
|
|
|
|
|
<th pResizableColumn (click)="sortOrderIcon.sort('phoneNumber')">
|
|
|
|
|
{{ 'AbpIdentity::PhoneNumber' | abpLocalization }}
|
|
|
|
|
@ -86,7 +96,11 @@
|
|
|
|
|
<i class="fa fa-cog mr-1"></i>{{ 'AbpIdentity::Actions' | abpLocalization }}
|
|
|
|
|
</button>
|
|
|
|
|
<div ngbDropdownMenu>
|
|
|
|
|
<button *abpPermission="'AbpIdentity.Users.Update'" ngbDropdownItem (click)="edit(data.id)">
|
|
|
|
|
<button
|
|
|
|
|
*abpPermission="'AbpIdentity.Users.Update'"
|
|
|
|
|
ngbDropdownItem
|
|
|
|
|
(click)="edit(data.id)"
|
|
|
|
|
>
|
|
|
|
|
{{ 'AbpIdentity::Edit' | abpLocalization }}
|
|
|
|
|
</button>
|
|
|
|
|
<button
|
|
|
|
|
@ -133,7 +147,13 @@
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="user-name">{{ 'AbpIdentity::UserName' | abpLocalization }}</label
|
|
|
|
|
><span> * </span>
|
|
|
|
|
<input type="text" id="user-name" class="form-control" formControlName="userName" autofocus />
|
|
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
id="user-name"
|
|
|
|
|
class="form-control"
|
|
|
|
|
formControlName="userName"
|
|
|
|
|
autofocus
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
@ -142,7 +162,9 @@
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="surname">{{ 'AbpIdentity::DisplayName:Surname' | abpLocalization }}</label>
|
|
|
|
|
<label for="surname">{{
|
|
|
|
|
'AbpIdentity::DisplayName:Surname' | abpLocalization
|
|
|
|
|
}}</label>
|
|
|
|
|
<input type="text" id="surname" class="form-control" formControlName="surname" />
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
@ -166,7 +188,12 @@
|
|
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="phone-number">{{ 'AbpIdentity::PhoneNumber' | abpLocalization }}</label>
|
|
|
|
|
<input type="text" id="phone-number" class="form-control" formControlName="phoneNumber" />
|
|
|
|
|
<input
|
|
|
|
|
type="text"
|
|
|
|
|
id="phone-number"
|
|
|
|
|
class="form-control"
|
|
|
|
|
formControlName="phoneNumber"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="custom-checkbox custom-control mb-2">
|
|
|
|
|
@ -210,7 +237,9 @@
|
|
|
|
|
[attr.id]="'roles-' + i"
|
|
|
|
|
[formControl]="roleGroup.controls[roles[i].name]"
|
|
|
|
|
/>
|
|
|
|
|
<label class="custom-control-label" [attr.for]="'roles-' + i">{{ roles[i].name }}</label>
|
|
|
|
|
<label class="custom-control-label" [attr.for]="'roles-' + i">{{
|
|
|
|
|
roles[i].name
|
|
|
|
|
}}</label>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</ng-template>
|
|
|
|
|
@ -229,5 +258,20 @@
|
|
|
|
|
</ng-template>
|
|
|
|
|
</abp-modal>
|
|
|
|
|
|
|
|
|
|
<abp-permission-management [(visible)]="visiblePermissions" providerName="U" [providerKey]="providerKey">
|
|
|
|
|
<abp-permission-management
|
|
|
|
|
#abpPermissionManagement="abpPermissionManagement"
|
|
|
|
|
*abpReplaceableTemplate="
|
|
|
|
|
{
|
|
|
|
|
inputs: {
|
|
|
|
|
providerName: { value: 'U' },
|
|
|
|
|
providerKey: { value: providerKey },
|
|
|
|
|
visible: { value: visiblePermissions, twoWay: true }
|
|
|
|
|
},
|
|
|
|
|
outputs: { visibleChange: onVisiblePermissionChange },
|
|
|
|
|
componentKey: 'PermissionManagement.PermissionManagementComponent'
|
|
|
|
|
};
|
|
|
|
|
let init = initTemplate
|
|
|
|
|
"
|
|
|
|
|
(abpInit)="init(abpPermissionManagement)"
|
|
|
|
|
>
|
|
|
|
|
</abp-permission-management>
|
|
|
|
|
|