1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <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-12">
-
- <div class="form-group" style="float:right;">
- <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 class="form-group" style="float:right; margin:0 10px;">
- <span class="spanSelect-w">
- <select [ngModel]="dataTableNumber" class="form-control selectButton-w" (input)="onFiltterChosen($event)" style="width:200px;">
- <option value="all">الكل</option>
- <option value="asked_for_opinion">طلب رأي</option>
- <option value="is_confirmed">الطلبات المقبوله</option>
- </select>
- حاله الطلب
- </span>
- </div>
- </div>
-
- </div>
-
- <table class="table table-bordered">
- <thead class="headBackground-w">
- <tr>
- <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>{{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>
-
|