aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/item-model/item-model.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/app/_elements/item-model/item-model.component.html')
-rw-r--r--frontend/src/app/_elements/item-model/item-model.component.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/item-model/item-model.component.html b/frontend/src/app/_elements/item-model/item-model.component.html
new file mode 100644
index 00000000..ca170b3d
--- /dev/null
+++ b/frontend/src/app/_elements/item-model/item-model.component.html
@@ -0,0 +1,26 @@
+<!--
+<div class="card" style="min-width: 12rem;">
+ <div class="card-header">
+ {{model.name}}
+ </div>
+ <div class="card-body">
+ <p class="card-text">
+ {{model.description}}
+ </p>
+ <div class="d-flex flex-column align-items-center">
+ <table class="table table-bordered table-sm">
+ <thead>
+ <th class="text-center" *ngFor="let column of model.inputs">{{column}}</th>
+ </thead>
+ </table>
+ <mat-icon>arrow_downward</mat-icon>
+ <p>
+ {{model.output}}
+ </p>
+ </div>
+ </div>
+ <div class="card-footer text-center">
+ <a routerLink="predict" mat-raised-button color="primary">Iskoristi</a>
+ </div>
+</div>
+--> \ No newline at end of file