diff options
author | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-03-25 22:18:05 +0100 |
---|---|---|
committer | Ognjen Cirkovic <ciraboxkg@gmail.com> | 2022-03-25 22:18:05 +0100 |
commit | d9742d0413a9b3cf0b530b275bd97dc0fe39c346 (patch) | |
tree | 5fb0043d372767b3d36c03e22489a26e6c92920d /frontend/src/app/_elements/item-model/item-model.component.html | |
parent | 2b985326e9ebf4f1e421114b09d9f7f456ce78f9 (diff) | |
parent | b3479aa63d26e7ce7acedd0d56352c04440eb41b (diff) |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
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.html | 26 |
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 |