|
|
|
@ -101,12 +101,11 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row g-3 mb-3">
|
|
|
|
<div class="row g-3 mb-3">
|
|
|
|
<div class="col-md-6 ms-auto text-end">
|
|
|
|
<div class="col-md-6 ms-auto text-end">
|
|
|
|
<button
|
|
|
|
<button type="button" class="btn btn-primary waves-effect waves-light" (click)="onSubmit()"
|
|
|
|
type="button"
|
|
|
|
[hidden]="mode === 'view' && showForm">
|
|
|
|
class="btn btn-primary waves-effect waves-light"
|
|
|
|
{{ 'save' | translate }}
|
|
|
|
(click)="onSubmit()"
|
|
|
|
</button>
|
|
|
|
>{{'save' | translate}}</button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@ -157,9 +156,9 @@
|
|
|
|
<table class="table mb-0 border">
|
|
|
|
<table class="table mb-0 border">
|
|
|
|
<thead class="table-light">
|
|
|
|
<thead class="table-light">
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<th style="width: 33%">{{'userID' | translate}}</th>
|
|
|
|
<th style="width: 40%">{{'userID' | translate}}</th>
|
|
|
|
<th style="width: 33%">{{'Name' | translate}}</th>
|
|
|
|
<th style="width: 40%">{{'Name' | translate}}</th>
|
|
|
|
<th style="width: 33%">{{'action' | translate}}</th>
|
|
|
|
<th style="width: 20%">{{'action' | translate}}</th>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tbody>
|
|
|
|
@ -171,15 +170,10 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<div class="d-flex justify-content-center gap-2">
|
|
|
|
<div class="d-flex justify-content-center gap-2">
|
|
|
|
|
|
|
|
|
|
|
|
<button class="btn btn-info btn-sm" title="View">
|
|
|
|
<button class="btn btn-info btn-sm" title="View" (click)="onView(item.userId)">
|
|
|
|
<i class="mdi mdi-eye-outline"></i>
|
|
|
|
<i class="mdi mdi-eye-outline"></i>
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
|
|
<button class="btn btn-secondary btn-sm" title="Edit">
|
|
|
|
|
|
|
|
<i class="fas fa-pen"></i>
|
|
|
|
|
|
|
|
</button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<button class="btn btn-danger btn-sm" title="Delete">
|
|
|
|
<button class="btn btn-danger btn-sm" title="Delete">
|
|
|
|
<i class="fas fa-trash-alt"></i>
|
|
|
|
<i class="fas fa-trash-alt"></i>
|
|
|
|
</button>
|
|
|
|
</button>
|
|
|
|
@ -203,7 +197,7 @@
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="text-muted">
|
|
|
|
<div class="text-muted">
|
|
|
|
{{ 'page' | translate }} {{ currentPage }} {{ 'of' | translate }} {{ totalPages() }} ({{ totalCount }} {{ 'totalItems' | translate }})
|
|
|
|
{{ 'page' | translate }} {{ currentPage }} {{ 'of' | translate }} {{ getTotalPages() }} ({{ totalCount }} {{ 'totalItems' | translate }})
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="btn-group">
|
|
|
|
<div class="btn-group">
|
|
|
|
|