blob: 0c83dc859bf836a84bd7293d7be856329da7bade (
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
|
<div id="header">
<h1>Moji setovi podataka</h1>
</div>
<div id="wrapper">
<div id="container" class="container p-5" style="background-color: rgba(255, 255, 255, 0.8); min-height: 100%;">
<div class="row mt-3 mb-2 d-flex justify-content-center">
<div class="col-sm-6" style="margin-bottom: 10px;">
</div>
<div class="row">
<div class="col-sm-4" style="margin-bottom: 10px;" *ngFor="let dataset of myDatasets">
<app-item-dataset [dataset]="dataset"></app-item-dataset>
<div class="panel-footer row"><!-- panel-footer -->
<div class="col-xs-6 text-center">
<div>
<div>
<button (click)="deleteThisDataset(dataset)" mat-raised-button color="warn" style="min-width: 10rem;float: right" ><mat-icon>delete</mat-icon></button>
</div>
</div>
</div>
</div><!-- end panel-footer -->
</div>
</div>
<div class="text-center" *ngIf="this.myDatasets.length == 0" >
<h2>Nema rezultata</h2>
</div>
</div>
</div>
</div>
|