diff options
author | Ivan Ljubisavljevic <ivan996sk@gmail.com> | 2022-05-16 00:49:40 +0200 |
---|---|---|
committer | Ivan Ljubisavljevic <ivan996sk@gmail.com> | 2022-05-16 00:49:40 +0200 |
commit | cc4e071ce18834d3bd4cd8ae123afab3ea5832b7 (patch) | |
tree | be1009111b7112a0ef28388bbbb381016ad0cdcf /frontend/src/app/_elements/form-dataset/form-dataset.component.html | |
parent | 22911bdc9c5ff39ff86d8298179b147c4580f82c (diff) | |
parent | a2989dc4534837f24f23ac33e5b30515ee6cfae7 (diff) |
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
Diffstat (limited to 'frontend/src/app/_elements/form-dataset/form-dataset.component.html')
-rw-r--r-- | frontend/src/app/_elements/form-dataset/form-dataset.component.html | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/frontend/src/app/_elements/form-dataset/form-dataset.component.html b/frontend/src/app/_elements/form-dataset/form-dataset.component.html index 07a3ee1a..9f8e9e6f 100644 --- a/frontend/src/app/_elements/form-dataset/form-dataset.component.html +++ b/frontend/src/app/_elements/form-dataset/form-dataset.component.html @@ -1,6 +1,5 @@ <div class="folderBox" *ngIf="dataset"> - - + <div class="topBar"> <div class="kolona mb-3"> <div class="fileButton"> @@ -43,10 +42,16 @@ <div class="file-container" [ngClass]="{'dottedClass': !tableData.hasInput}"> <i class="material-icons-outlined icon-display" [ngClass]="{'hidden': tableData.hasInput}">file_upload</i> + <input class="file" id="file-upload" (change)="changeListener($event)" #fileInput type="file" accept=".csv"> <div class="mt-5 datatable"> + <div [ngClass]="{'hidden': (!existingFlag)}" class="text-center"> + <button mat-button (click)="goBack()"><mat-icon>keyboard_arrow_left</mat-icon></button> + <div style="display: inline;">{{(this.begin/10)+1}}</div> + <button mat-button (click)="goForward()"><mat-icon>keyboard_arrow_right</mat-icon></button> + </div> <app-datatable [tableData]="tableData"></app-datatable> </div> |