add components, refactor sidebar section, add config

This commit is contained in:
FrancescoMolinaro
2023-12-22 10:42:38 +01:00
parent 7445591148
commit 604fb4f3d1
18 changed files with 296 additions and 27 deletions

View File

@@ -0,0 +1,11 @@
<div class="container-fluid">
<div *ngFor="let rows of boxesConfig">
<div *ngFor="let box of rows.boxes">
<div [ngStyle]="{'background-color': box.color}">
<!--Here will go the actual count coming from the REST endpoint -->
<div>0</div>
<div>{{ box.title | translate }}</div>
</div>
</div>
</div>
</div>