Skip to content
Snippets Groups Projects
Commit 4e4efed0 authored by Marlène SIMONDANT's avatar Marlène SIMONDANT
Browse files

table

parent bae5ebec
No related branches found
No related tags found
2 merge requests!993Notif,!983feat(dashboard) : create dashboard !
...@@ -4,8 +4,8 @@ ...@@ -4,8 +4,8 @@
<div>Accompagnant souhaité</div> <div>Accompagnant souhaité</div>
<div>Structure choisie</div> <div>Structure choisie</div>
<div>Statut</div> <div>Statut</div>
<div *ngIf="type === 'myOrientations'">Type d'orientation</div> <div *ngIf="from === 'myOrientations'">Type d'orientation</div>
<div *ngIf="type !== 'myOrientations'">Action</div> <div *ngIf="from !== 'myOrientations'">Action</div>
<div>&nbsp;</div> <div>&nbsp;</div>
</div> </div>
<a <a
...@@ -64,7 +64,9 @@ ...@@ -64,7 +64,9 @@
class="hide-on-mobile" class="hide-on-mobile"
[ariaLabel]="'Structure choisie : ' + orientation.structureChoice[0]?.structureName" [ariaLabel]="'Structure choisie : ' + orientation.structureChoice[0]?.structureName"
[label]="orientation.structureChoice[0]?.structureName" [label]="orientation.structureChoice[0]?.structureName"
[iconName]="'structureCategory_private'" [iconName]="
this.orientationService.getStructureTypeIcon(orientation.structureChoice[0]?.structureType?.category)
"
[type]="'entity light'" [type]="'entity light'"
/> />
<app-svg-icon <app-svg-icon
...@@ -73,7 +75,7 @@ ...@@ -73,7 +75,7 @@
[ariaLabel]="'Structure choisie : ' + orientation.structureChoice[0]?.structureName" [ariaLabel]="'Structure choisie : ' + orientation.structureChoice[0]?.structureName"
[iconClass]="'icon-32'" [iconClass]="'icon-32'"
[folder]="'ico'" [folder]="'ico'"
[icon]="'structureCategory_private'" [icon]="this.orientationService.getStructureTypeIcon(orientation.structureChoice[0]?.structureType?.category)"
/> />
</div> </div>
<div> <div>
...@@ -88,7 +90,7 @@ ...@@ -88,7 +90,7 @@
</div> </div>
<div> <div>
<app-tag-item <app-tag-item
*ngIf="type === 'myOrientations' && orientation.accompanimentType" *ngIf="from === 'myOrientations' && orientation.accompanimentType"
[label]="this.orientationService.getTagProperty('type', orientation.accompanimentType, 'label')" [label]="this.orientationService.getTagProperty('type', orientation.accompanimentType, 'label')"
[size]="'small'" [size]="'small'"
[color]="this.orientationService.getTagProperty('type', orientation.accompanimentType, 'color')" [color]="this.orientationService.getTagProperty('type', orientation.accompanimentType, 'color')"
...@@ -96,7 +98,7 @@ ...@@ -96,7 +98,7 @@
[iconName]="this.orientationService.getTagProperty('type', orientation.accompanimentType, 'icon')" [iconName]="this.orientationService.getTagProperty('type', orientation.accompanimentType, 'icon')"
/> />
<app-tag-item <app-tag-item
*ngIf="type !== 'myOrientations' && orientation.action" *ngIf="from !== 'myOrientations' && orientation.action"
[label]="this.orientationService.getTagProperty('action', orientation.action, 'label')" [label]="this.orientationService.getTagProperty('action', orientation.action, 'label')"
[size]="'small'" [size]="'small'"
[color]="this.orientationService.getTagProperty('action', orientation.action, 'color')" [color]="this.orientationService.getTagProperty('action', orientation.action, 'color')"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment