aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/my-models/my-models.component.html
blob: 870e0ddb69c321d2d90cf315971ee7d83b1ffa42 (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
<div id="wrapper">
    <div id="container" class="container p-5" style="background-color: white; 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 model of myModels">
                <app-item-model [model]="model"></app-item-model>
                <div style="width: 25%; margin: auto;">
                    <button (click)="deleteThisModel(model)" style="margin-top: 3px; width: 100%;">Obriši</button>
                </div>
                </div>
            </div>
        <div class="text-center" *ngIf="this.myModels.length == 0" >
        <h2>Nema rezultata</h2>
        </div>
        </div>
    
    </div>
    
    
    
    
    
    </div>