parent
2e6b60f5c0
commit
1c228628f1
@ -1,4 +1,4 @@ |
||||
.saisie { |
||||
/*.saisie { |
||||
overflow-y: scroll; |
||||
height: 60%; |
||||
} |
||||
height: 100%; |
||||
}*/ |
@ -0,0 +1,14 @@ |
||||
li { |
||||
margin-bottom: 1%; |
||||
} |
||||
.Atteint { |
||||
color: green |
||||
} |
||||
|
||||
.NonAtteint{ |
||||
color: red |
||||
} |
||||
|
||||
.Partiel { |
||||
color: orange |
||||
} |
@ -0,0 +1,21 @@ |
||||
<ng-container *ngIf="ep.objectifs != undefined && ep.objectifs != []"> |
||||
<h3>Nouveaux objectifs</h3> |
||||
<ul> |
||||
<li *ngFor= "let objectif of ep.objectifs; let index = index" > |
||||
Objectif {{index +1}} : {{objectif.libelle}} |
||||
|
||||
</li> |
||||
</ul> |
||||
</ng-container> |
||||
|
||||
<ng-container *ngIf="ep.objectifsPrecedent != undefined && ep.objectifsPrecedent != []"> |
||||
<h3>Objectifs précédents</h3> |
||||
<ul> |
||||
<li *ngFor= "let objectif of ep.objectifsPrecedent; let index = index"> |
||||
<p [ngClass]="objectif.statutObjectif"> Objectif {{index +1}} : {{objectif.libelle}} ({{afficherStatutObjectif(objectif.statutObjectif)}})</p> |
||||
<p *ngIf="objectif.commentaire != undefined && objectif.commentaire != ''"> Commentaire : {{objectif.commentaire}}</p> |
||||
</li> |
||||
</ul> |
||||
</ng-container> |
||||
|
||||
|
@ -0,0 +1,19 @@ |
||||
import { Component, Input } from "@angular/core"; |
||||
import { afficherStatutObjectif, EpDTO, StatutObjectif } from "@shared/api-swagger"; |
||||
|
||||
|
||||
@Component({ |
||||
selector : "ep-objectifs", |
||||
templateUrl: "ep-objectifs.component.html", |
||||
styleUrls: ["ep-objectifs.component.css"] |
||||
}) |
||||
export class EpObjectifsComponent { |
||||
|
||||
@Input() ep : EpDTO; |
||||
|
||||
constructor(){} |
||||
|
||||
afficherStatutObjectif(statut: StatutObjectif) { |
||||
return afficherStatutObjectif(statut); |
||||
} |
||||
} |
Loading…
Reference in new issue