aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/item-dataset/item-dataset.component.html
diff options
context:
space:
mode:
authorDanijel Andjelkovic <adanijel99@gmail.com>2022-03-15 16:06:39 +0100
committerDanijel Andjelkovic <adanijel99@gmail.com>2022-03-15 16:06:39 +0100
commit6938b1f8fd0a8d27b9fdcc5bc114ffabcd4bac68 (patch)
tree0725c5ffedd201603b574294be6218b754cdd898 /frontend/src/app/_elements/item-dataset/item-dataset.component.html
parent4791e1ba6d4c3c737e675f54a947251c3d42163d (diff)
parenta9287af015228a73b5053acdef421d9d63ba766b (diff)
Merge branch 'frontendNaslovna' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
Diffstat (limited to 'frontend/src/app/_elements/item-dataset/item-dataset.component.html')
-rw-r--r--frontend/src/app/_elements/item-dataset/item-dataset.component.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/item-dataset/item-dataset.component.html b/frontend/src/app/_elements/item-dataset/item-dataset.component.html
new file mode 100644
index 00000000..c1dc2609
--- /dev/null
+++ b/frontend/src/app/_elements/item-dataset/item-dataset.component.html
@@ -0,0 +1,15 @@
+<div class="card" style="width: 18rem;">
+ <div class="card-header">
+ {{dataset.name}}
+ </div>
+ <div class="card-body">
+ <p class="card-text">
+ {{dataset.description}}
+ </p>
+ <table class="table table-bordered table-sm">
+ <thead>
+ <th scope="col" *ngFor="let column of dataset.header">{{column}}</th>
+ </thead>
+ </table>
+ </div>
+</div> \ No newline at end of file