Commits
Marie Verdonck authored a261034f9d2
55 55 | </tr> |
56 56 | </thead> |
57 57 | <tbody> |
58 58 | <tr *ngFor="let eperson of (ePeople | async)?.payload?.page" |
59 59 | [ngClass]="{'table-primary' : isActive(eperson) | async}"> |
60 60 | <td>{{eperson.id}}</td> |
61 61 | <td>{{eperson.name}}</td> |
62 62 | <td>{{eperson.email}}</td> |
63 63 | <td> |
64 64 | <div class="btn-group edit-field"> |
65 - | <button (click)="editEPerson(eperson)" class="btn btn-outline-primary btn-sm" |
65 + | <button (click)="editEPerson(eperson)" class="btn btn-outline-primary btn-sm access-control-editEPersonButton" |
66 66 | title="{{labelPrefix + 'table.edit.buttons.edit' | translate}}"> |
67 67 | <i class="fas fa-edit fa-fw"></i> |
68 68 | </button> |
69 69 | <button (click)="deleteEPerson(eperson)" |
70 - | class="btn btn-outline-danger btn-sm" |
70 + | class="btn btn-outline-danger btn-sm access-control-deleteEPersonButton" |
71 71 | title="{{labelPrefix + 'table.edit.buttons.remove' | translate}}"> |
72 72 | <i class="fas fa-trash-alt fa-fw"></i> |
73 73 | </button> |
74 74 | </div> |
75 75 | </td> |
76 76 | </tr> |
77 77 | </tbody> |
78 78 | </table> |
79 79 | </div> |
80 80 | |