role-report.component.html 1.3 KB

1234567891011121314151617181920212223242526272829303132
  1. <div class="reprot">
  2. <div class="container">
  3. <div class="containerContent-w">
  4. <div class="row" id="print-section">
  5. <div class="col-12">
  6. <table class="table table-bordered">
  7. <thead class="headBackground-w">
  8. <tr>
  9. <th>إسم المجموغه</th>
  10. <th *ngIf="rolesList['pages'].length > 0">إسم الصفحه</th>
  11. <th>إسم النظام</th>
  12. <th>تاريخ الإضافه</th>
  13. <th>المستخدم</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. <tr>
  18. <td>{{rolesList.role_name}}</td>
  19. <td *ngIf="rolesList['pages'].length > 0"><p *ngFor="let page of rolesList['pages']">{{page.name}}</p></td>
  20. <td>{{rolesList.role_name}}</td>
  21. <td>{{rolesList.created_at}}</td>
  22. <td>{{rolesList.name}}</td>
  23. </tr>
  24. </tbody>
  25. </table>
  26. </div>
  27. </div>
  28. <button class="btn btn-success" style="float: right; margin: 10px 0;" (click)="onPrint()">طباعه</button>
  29. </div>
  30. </div>
  31. </div>