blob: 2c69ae9c9a8e9b4879d3c837efee5ff307b514f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<!--<div #wrapper class="text-offwhite d-flex flex-row">
<div class="navmenu d-flex flex-column flex-shrink-0 p-3">
</div>
<div class="position-relative">
<div *ngIf="event==0" class="overflow-y-auto">
<app-folder></app-folder>
</div>
<div *ngIf="event==1">
<div class="text-offwhite" style="height: 100px;width: 100px;background-color: red;top:50%;left: 50%;position: absolute;">Insert odabir kolona</div>
</div>
<div *ngIf="event==2">
<div class="text-offwhite" style="height: 100px;width: 100px;background-color: blue;top:50%;left: 50%;position: absolute;">Insert treniranje</div>
</div>
</div>
</div>-->
<div class="container-fluid p-0 text-offwhite holder" style="height: calc(100vh - 64px);">
<div class="d-flex flex-colum align-items-center sidenav">
<mat-stepper orientation="vertical" (selectionChange)="changePage($event)">
<mat-step>
<ng-template matStepLabel><span class="label">Izvor podataka</span></ng-template>
<ng-template matStepContent>
<p>Izaberite vas izvor podataka</p>
</ng-template>
</mat-step>
<mat-step>
<ng-template matStepLabel> <span class="label">Odabir kolona</span></ng-template>
<ng-template matStepContent>
<p>Pripremite podatke i izaberite izlazne kolone</p>
</ng-template>
</mat-step>
<mat-step>
<ng-template matStepLabel><span class="label">Treniranje</span></ng-template>
<p>Odaberite parametre i trenirajte model</p>
</mat-step>
</mat-stepper>
</div>
<div class="d-flex flex-colum w-100 position-relative">
<div *ngIf="event==0">
<app-folder></app-folder>
</div>
<div *ngIf="event==1">
<div class="text-offwhite" style="height: 100px;width: 100px;background-color: red;top:50%;left: 50%;position: absolute;">Insert odabir kolona</div>
</div>
<div *ngIf="event==2">
<div class="text-offwhite" style="height: 100px;width: 100px;background-color: blue;top:50%;left: 50%;position: absolute;">Insert treniranje</div>
</div>
</div>
</div>
|