Skip to content
Snippets Groups Projects
Commit bcded9a8 authored by Antonin COQUET's avatar Antonin COQUET
Browse files

fix: workshop price and closures hours

parent 827d13c4
No related branches found
No related tags found
3 merge requests!178release V1.10.0,!111Dev,!108Fix/structure info
...@@ -159,6 +159,7 @@ ...@@ -159,6 +159,7 @@
<h2>Accueil</h2> <h2>Accueil</h2>
</div> </div>
<!-- Openning Hours --> <!-- Openning Hours -->
<div *ngIf="structure.exceptionalClosures" class="bold-info">{{structure.exceptionalClosures}}</div>
<div fxLayout="row" class="w-100 mobile-column"> <div fxLayout="row" class="w-100 mobile-column">
<div *ngIf="structure.hours.hasData()" fxFlex="50%"> <div *ngIf="structure.hours.hasData()" fxFlex="50%">
<h3 class="subtitle">Horaires d’ouverture au public</h3> <h3 class="subtitle">Horaires d’ouverture au public</h3>
...@@ -243,7 +244,12 @@ ...@@ -243,7 +244,12 @@
<app-svg-icon [type]="'ico'" [icon]="'services'" [iconClass]="'icon-32'"></app-svg-icon> <app-svg-icon [type]="'ico'" [icon]="'services'" [iconClass]="'icon-32'"></app-svg-icon>
<h2>Ateliers</h2> <h2>Ateliers</h2>
</div> </div>
<span class="bold-info">L'accès à ces ateliers peut être payant</span> <div *ngIf="structure.freeWorkShop">
<span class="bold-info">L'accès à ces ateliers est gratuit</span>
</div>
<div *ngIf="!structure.freeWorkShop">
<span class="bold-info">L'accès à ces ateliers est payant</span>
</div>
<div fxLayout="row" class="w-100 mobile-column"> <div fxLayout="row" class="w-100 mobile-column">
<div fxFlex="50%" *ngIf="isBaseSkills()"> <div fxFlex="50%" *ngIf="isBaseSkills()">
<h3 class="subtitle">Compétences de base</h3> <h3 class="subtitle">Compétences de base</h3>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment