aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/item-dataset/item-dataset.component.html
blob: cf39a1255db0d1ecffce33fa42adbd8066726121 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="card" style="min-width: 12rem;">
    <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>