|
@@ -0,0 +1,97 @@
|
|
|
+<div class="container">
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-12">
|
|
|
+ <ul class="list-unstyled titileLi-w">
|
|
|
+ <li class="headingText-w">خدمه التدريب</li>
|
|
|
+ <li class="headingText-w activeLi-w" style="margin-right:5px">إستعراض بيانات المتدربين</li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="containerContent-w">
|
|
|
+
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-12 col-sm-12 col-md-6 col-lg-6">
|
|
|
+ <button type="button" class="btn btn-outline-success butttonCreate dashButton-w" (click)="onAdd()" *ngIf="authSer.showAddBtn"><i class="fas fa-plus marginFontAowsome-w"></i>إنشاء جديد</button>
|
|
|
+ <!-- <button type="button" class="btn btn-outline-danger butttonDelete dashButton-w" (click)="onDelete()" *ngIf="authSer.showDeleteBtn"><i class="fas fa-times marginFontAowsome-w"></i>حذف</button> -->
|
|
|
+ </div>
|
|
|
+ <div class="col-12 col-sm-12 col-md-6 col-lg-6">
|
|
|
+ <div class="form-group">
|
|
|
+ <input type="text" placeholder="البحث" class="form-control inputSearchTable-w" style="margin-top:13px;" (input)="filtterFunc($event)"/>
|
|
|
+ <hr>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ <div class="row">
|
|
|
+ <div class="col-12 col-sm-12 col-md-12 col-lg-6">
|
|
|
+ <div class="form-group">
|
|
|
+ <span class="spanSelect-w">
|
|
|
+ <select [ngModel]="dataTableNumber" class="form-control selectButton-w" (input)="onGetValue($event)">
|
|
|
+ <option value="5">5</option>
|
|
|
+ <option value="10">10</option>
|
|
|
+ <option value="15">15</option>
|
|
|
+ <option value="20">20</option>
|
|
|
+ </select>
|
|
|
+ من العناصر يتم عرضها
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <div class="col-12 col-sm-12 col-md-12 col-lg-6">
|
|
|
+ <div class="form-group">
|
|
|
+ <span class="spanSelect-w">
|
|
|
+ حاله الطلب
|
|
|
+ <select [ngModel]="dataTableNumber" class="form-control selectButton-w" (input)="onFiltterChosen($event)" style="width:200px;">
|
|
|
+ <option value="pending">تحت الإجراء</option>
|
|
|
+ <option value="accepted">مقبول</option>
|
|
|
+ <option value="refused">مرفوض</option>
|
|
|
+ <option value="canceled">ملغي</option>
|
|
|
+ <option value="ended">مغلق</option>
|
|
|
+ <option value="asked_for_opinion">طلب رأي</option>
|
|
|
+ <option value="replayed_opinion">رأي القسم</option>
|
|
|
+ </select>
|
|
|
+ </span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <table class="table table-bordered">
|
|
|
+ <thead class="headBackground-w">
|
|
|
+ <tr>
|
|
|
+ <th>
|
|
|
+ <div class="custom-control custom-checkbox">
|
|
|
+ <input type="checkbox" class="custom-control-input" [(ngModel)]="selectedAll" (change)="selectAll();" id="customCheck" name="example1">
|
|
|
+ <!-- <label class="custom-control-label fixedWidthLabel-w checkAll-w" for="customCheck" style="margin-bottom:20px; cursor: pointer;"></label> -->
|
|
|
+ </div>
|
|
|
+ </th>
|
|
|
+ <th> إسم المتدرب</th>
|
|
|
+ <th>إسم التخصص</th>
|
|
|
+ <th>إسم التخصص الدقيق</th>
|
|
|
+ <th> الجامعه</th>
|
|
|
+ <th *ngIf="authSer.showEditBtn">تفاصيل المتدرب</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <tr *ngFor="let data of dataList | paginate: { itemsPerPage: perPagePagenation, currentPage: currentPage, totalItems: count }; let i = index ">
|
|
|
+ <td>
|
|
|
+ <div class="custom-control custom-checkbox centerIneerItem">
|
|
|
+ <input type="checkbox" class="custom-control-input" id="{{data.id}}" [(ngModel)]="data.selected" [value]='data' (change)="checkIfAllSelected();">
|
|
|
+ <!-- <label class="custom-control-label disblayBlock-w" for="{{news.id}}" style="color:#2a2a2a;cursor: pointer;"></label> -->
|
|
|
+ </div>
|
|
|
+ </td>
|
|
|
+ <td>{{data.trainee_name}}</td>
|
|
|
+ <td> {{data.specialization_name}}</td>
|
|
|
+ <td>{{data.specific_specialization}}</td>
|
|
|
+ <td>{{data.university}}</td>
|
|
|
+ <td *ngIf="authSer.showEditBtn"><button type="button" class="btn btn-outline-secondary" (click)="onEdit(data.id)"><i class="fas fa-edit"></i></button></td>
|
|
|
+ </tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <pagination-controls nextLabel="التالي" previousLabel="السابق" (pageChange)="onPageChange($event)"></pagination-controls>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|