|
|
|
@ -1,19 +1,19 @@ |
|
|
|
|
<div xmlns=""> |
|
|
|
|
<h2>Collaborateurs</h2> |
|
|
|
|
<h2 class = mb-4>Collaborateurs</h2> |
|
|
|
|
|
|
|
|
|
<div style="overflow-x:auto;"> |
|
|
|
|
<table> |
|
|
|
|
<div style="overflow-x:auto;" class="mb-5"> |
|
|
|
|
<table > |
|
|
|
|
<tr> |
|
|
|
|
<th>Name</th> |
|
|
|
|
<th>First Name</th> |
|
|
|
|
<th>Apside Mail</th> |
|
|
|
|
<th class="spaced">Name</th> |
|
|
|
|
<th class="spaced">First Name</th> |
|
|
|
|
<th class="spaced">Apside Mail</th> |
|
|
|
|
</tr> |
|
|
|
|
|
|
|
|
|
<tr *ngFor="let collaborateur of collaborateurs"> |
|
|
|
|
<td class="list"> {{collaborateur.name}} </td> |
|
|
|
|
<td class="list"> {{collaborateur.firstName}} </td> |
|
|
|
|
<td class="list"> {{collaborateur.apsideMail}} </td> |
|
|
|
|
<td class="list"> <a routerLink="{{collaborateur.id}}"> Modifier </a></td> |
|
|
|
|
<td class="spaced"> {{collaborateur.name}} </td> |
|
|
|
|
<td class="spaced"> {{collaborateur.firstName}} </td> |
|
|
|
|
<td class="spaced"> {{collaborateur.apsideMail}} </td> |
|
|
|
|
<td class="spaced"> <a routerLink="{{collaborateur.id}}"> Modifier </a></td> |
|
|
|
|
</tr> |
|
|
|
|
</table> |
|
|
|
|
</div> |
|
|
|
|