diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-13 20:57:27 +0100 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-13 20:57:27 +0100 |
commit | 6aeb963fa64af9dc0ddf2f9aeaf1903a7db26afc (patch) | |
tree | cc8ae72e108934022f9e8b6d9048717b7d6dac7e /frontend/src/app/_elements/carousel/carousel.component.html | |
parent | a561c4bed81a7399dbe900253c0576ad0ba6f5e7 (diff) |
Dodata naslovna strana i navigacioni meni, kao i neke dodatne komponente i modeli podataka (lista elemenata, element-dataset, element-prediktor).
Diffstat (limited to 'frontend/src/app/_elements/carousel/carousel.component.html')
-rw-r--r-- | frontend/src/app/_elements/carousel/carousel.component.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/carousel/carousel.component.html b/frontend/src/app/_elements/carousel/carousel.component.html new file mode 100644 index 00000000..ea522626 --- /dev/null +++ b/frontend/src/app/_elements/carousel/carousel.component.html @@ -0,0 +1,12 @@ +<div class="d-flex flex-row"> + <div class="mx-2" *ngFor="let item of items" [ngSwitch]="item.constructor.name"> + <ng-template ngSwitchCase="Dataset"> + <app-item-dataset [dataset]="item"> + </app-item-dataset> + </ng-template> + <ng-template ngSwitchCase="Predictor"> + <app-item-predictor> + </app-item-predictor> + </ng-template> + </div> +</div>
\ No newline at end of file |