|
|
|
@ -11,15 +11,13 @@ |
|
|
|
|
<table class="table"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th scope="col">ID</th> |
|
|
|
|
<th scope="col">Collaborateur</th> |
|
|
|
|
<th scope="col">Issue</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
<tr *ngFor="let periodeEssai of periodeEssais"> |
|
|
|
|
<th scope="row">{{periodeEssai.id}}</th> |
|
|
|
|
<td> {{getCollaborateurById(periodeEssai.collaborateurId).name}} {{getCollaborateurById(periodeEssai.collaborateurId).firstName}} </td> |
|
|
|
|
<th scope="row">{{getCollaborateurById(periodeEssai.collaborateurId).name}} {{getCollaborateurById(periodeEssai.collaborateurId).firstName}}</th> |
|
|
|
|
<td> {{periodeEssai.issue}}</td> |
|
|
|
|
<td><a routerLink="{{periodeEssai.id}}"> Modifier </a></td> |
|
|
|
|
</tr> |
|
|
|
|