aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_pages/my-models/my-models.component.html
diff options
context:
space:
mode:
authorIvan Ljubisavljevic <ivan996sk@gmail.com>2022-03-26 20:09:28 +0100
committerIvan Ljubisavljevic <ivan996sk@gmail.com>2022-03-26 20:09:28 +0100
commita315d3c0bc44c091d7c85697c9c8135b314ebc06 (patch)
tree12453ec9bb897610b7905cf941ffc4ac6457f7ec /frontend/src/app/_pages/my-models/my-models.component.html
parentf22b01150a7ffc9c7d246e5c555b36511d80b492 (diff)
Odradjen my-models stranica #55
Diffstat (limited to 'frontend/src/app/_pages/my-models/my-models.component.html')
-rw-r--r--frontend/src/app/_pages/my-models/my-models.component.html32
1 files changed, 27 insertions, 5 deletions
diff --git a/frontend/src/app/_pages/my-models/my-models.component.html b/frontend/src/app/_pages/my-models/my-models.component.html
index e94f67f5..870e0ddb 100644
--- a/frontend/src/app/_pages/my-models/my-models.component.html
+++ b/frontend/src/app/_pages/my-models/my-models.component.html
@@ -1,5 +1,27 @@
-<ul class="list-group my-2">
- <li class="list-group-item" *ngFor="let model of myModels">
- <app-item-model [model]="model"></app-item-model>
- </li>
-</ul> \ No newline at end of file
+<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>