parent
1c41609db7
commit
3c4f4df19d
@ -1,2 +1,2 @@ |
|||||||
<h3 *ngIf="demandesFormation == undefined || demandesFormation == []">Aucune demande de formation</h3> |
<h3 *ngIf="demandesFormation == undefined || demandesFormation == []">Aucune demande de formation</h3> |
||||||
<demandes-formation-table *ngIf="demandesFormation != undefined && demandesFormation != []" [displayedColumns]="displayedColumns" [estAffichageEP]="estAffichageEP" [demandesFormation]="demandesFormation" ></demandes-formation-table> |
<demandes-formation-table *ngIf="demandesFormation != undefined && demandesFormation.length != 0" [displayedColumns]="displayedColumns" [estAffichageEP]="estAffichageEP" [demandesFormation]="demandesFormation" ></demandes-formation-table> |
@ -1,8 +1,8 @@ |
|||||||
<ng-container *ngIf="engagements == undefined || engagements == []"> |
<ng-container *ngIf="engagements == undefined || engagements.length == 0"> |
||||||
<h3>Aucun engagements pris</h3> |
<h3>Aucun engagements pris</h3> |
||||||
</ng-container> |
</ng-container> |
||||||
|
|
||||||
<ng-container *ngIf="engagements != undefined && engagements != []"> |
<ng-container *ngIf="engagements != undefined && engagements.length != 0"> |
||||||
<engagements-table [displayedColumns]="displayedColumns" [estAffichageEP]="estAffichageEP" [engagementsSaisis]="engagements"></engagements-table> |
<engagements-table [displayedColumns]="displayedColumns" [estAffichageEP]="estAffichageEP" [engagementsSaisis]="engagements"></engagements-table> |
||||||
</ng-container> |
</ng-container> |
||||||
|
|
||||||
|
@ -1,2 +0,0 @@ |
|||||||
<app-nav-menu></app-nav-menu> |
|
||||||
<h1>New participant </h1> |
|
@ -1,17 +0,0 @@ |
|||||||
import { Component, OnInit } from '@angular/core'; |
|
||||||
|
|
||||||
/** |
|
||||||
* Composant permettant l'ajout d'un participant à un EP |
|
||||||
* Ce composant pourrait être remplacé par un dialog de material angular |
|
||||||
*/ |
|
||||||
@Component({ |
|
||||||
selector: 'app-new-participant', |
|
||||||
templateUrl: './new-participant.component.html' |
|
||||||
}) |
|
||||||
export class NewParticipantComponent implements OnInit { |
|
||||||
|
|
||||||
constructor() {} |
|
||||||
|
|
||||||
ngOnInit() { |
|
||||||
} |
|
||||||
} |
|
Loading…
Reference in new issue