|
|
|
@ -5,19 +5,19 @@ |
|
|
|
|
<div style="display: flex;"> |
|
|
|
|
|
|
|
|
|
<mat-card class="home-card"> |
|
|
|
|
<mat-card-title class="title-center">Périodes d'essai</mat-card-title> |
|
|
|
|
<mat-card-subtitle class="title-center">(7 jours restants ou moins)</mat-card-subtitle> |
|
|
|
|
<mat-card-title class="title-center">Fins de périodes d'essai</mat-card-title> |
|
|
|
|
<mat-card-subtitle class="subtitle-center">7 jours restants ou moins</mat-card-subtitle> |
|
|
|
|
<mat-card-content> |
|
|
|
|
<div class="col-12" style="overflow-x:auto;"> |
|
|
|
|
<div class="col-12"> |
|
|
|
|
<table class="table"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th scope="col">Collaborateur</th> |
|
|
|
|
<th scope="col">Date de fin prévue</th> |
|
|
|
|
<th scope="col">Date de fin</th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
<tr *ngFor="let periodeEssai of periodeEssais"> |
|
|
|
|
<tr *ngFor="let periodeEssai of periodeEssais | slice:0:5;"> |
|
|
|
|
<td>{{getCollaborateurById(periodeEssai.collaborateurId).name}} {{getCollaborateurById(periodeEssai.collaborateurId).firstName}}</td> |
|
|
|
|
<td> {{getSplitDate(periodeEssai.plannedEndingDate.toString())}}</td> |
|
|
|
|
</tr> |
|
|
|
@ -26,15 +26,15 @@ |
|
|
|
|
</div> |
|
|
|
|
</mat-card-content> |
|
|
|
|
<mat-card-actions> |
|
|
|
|
<button>Voir les périodes d'essai</button> |
|
|
|
|
<button class="button-link" routerLink="/periodeessais">Accéder aux Périodes d'essai</button> |
|
|
|
|
</mat-card-actions> |
|
|
|
|
</mat-card> |
|
|
|
|
|
|
|
|
|
<mat-card class="home-card"> |
|
|
|
|
<mat-card-title class="title-center">Référencements</mat-card-title> |
|
|
|
|
<mat-card-subtitle class="title-center">(collaborateurs sans référencements)</mat-card-subtitle> |
|
|
|
|
<mat-card-title class="title-center">Référencements manquants</mat-card-title> |
|
|
|
|
<mat-card-subtitle class="subtitle-center">collaborateurs sans référencements</mat-card-subtitle> |
|
|
|
|
<mat-card-content> |
|
|
|
|
<div class="col-12" style="overflow-x:auto;"> |
|
|
|
|
<div class="col-12"> |
|
|
|
|
<table class="table"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
@ -43,8 +43,8 @@ |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
<tr *ngFor="let collaborateur of collaborateursSansRef"> |
|
|
|
|
<th scope="row">{{collaborateur.name}}</th> |
|
|
|
|
<tr *ngFor="let collaborateur of collaborateursSansRef | slice:0:5;"> |
|
|
|
|
<td> {{collaborateur.name}} </td> |
|
|
|
|
<td> {{collaborateur.firstName}} </td> |
|
|
|
|
</tr> |
|
|
|
|
</tbody> |
|
|
|
@ -52,10 +52,51 @@ |
|
|
|
|
</div> |
|
|
|
|
</mat-card-content> |
|
|
|
|
<mat-card-actions> |
|
|
|
|
<button>Voir les référencements</button> |
|
|
|
|
<button class="button-link" routerLink="/referencements">Accéder aux Référencements</button> |
|
|
|
|
</mat-card-actions> |
|
|
|
|
</mat-card> |
|
|
|
|
|
|
|
|
|
<mat-card class="home-card"> |
|
|
|
|
<mat-card-title class="title-center">Ajout rapide</mat-card-title> |
|
|
|
|
<mat-card-subtitle class="subtitle-center">liens vers les pages d'ajout</mat-card-subtitle> |
|
|
|
|
<mat-card-content> |
|
|
|
|
<table class="table"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th scope="col"> </th> |
|
|
|
|
</tr> |
|
|
|
|
</thead> |
|
|
|
|
<tbody> |
|
|
|
|
<tr> |
|
|
|
|
<td> |
|
|
|
|
<button class="button-link" routerLink="/businessunits/add">Ajouter une Business Unit</button> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
<tr> |
|
|
|
|
<td> |
|
|
|
|
<button class="button-link" routerLink="/agences/add">Ajouter une Agence</button> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
<tr> |
|
|
|
|
<td> |
|
|
|
|
<button class="button-link" routerLink="/collaborateurs/add">Ajouter un Collaborateur</button> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
<tr> |
|
|
|
|
<td> |
|
|
|
|
<button class="button-link" routerLink="/referencements/add">Ajouter un Référencement</button> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
<tr> |
|
|
|
|
<td> |
|
|
|
|
<button class="button-link" routerLink="/periodeessais/add">Ajouter une Période d'essai</button> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
</tbody> |
|
|
|
|
</table> |
|
|
|
|
</mat-card-content> |
|
|
|
|
</mat-card> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|