diff options
author | Frederick Muriuki Muriithi | 2024-10-14 09:19:08 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-10-14 09:19:08 -0500 |
commit | f6f51d976956f080d7302b01e3c7e978f691ff5d (patch) | |
tree | b650a05b9810a69a177f5a9f372113f9d5b4f045 /uploader/templates/phenotypes/macro-display-pheno-dataset-card.html | |
parent | 56eb692b25ecf7a56235398f3b90fd0d02f5d097 (diff) | |
download | gn-uploader-f6f51d976956f080d7302b01e3c7e978f691ff5d.tar.gz |
Improve layout and styling of sidebar content
Diffstat (limited to 'uploader/templates/phenotypes/macro-display-pheno-dataset-card.html')
-rw-r--r-- | uploader/templates/phenotypes/macro-display-pheno-dataset-card.html | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/uploader/templates/phenotypes/macro-display-pheno-dataset-card.html b/uploader/templates/phenotypes/macro-display-pheno-dataset-card.html index 1121443..11b108b 100644 --- a/uploader/templates/phenotypes/macro-display-pheno-dataset-card.html +++ b/uploader/templates/phenotypes/macro-display-pheno-dataset-card.html @@ -7,16 +7,24 @@ <div class="card-body"> <h5 class="card-title">Phenotypes' Dataset</h5> <div class="card-text"> - <dl> - <dt>Name</dt> - <dd>{{dataset.Name}}</dd> + <table class="table"> + <tbody> + <tr> + <td>Name</td> + <td>{{dataset.Name}}</td> + </tr> - <dt>Full Name</dt> - <dd>{{dataset.FullName}}</dd> + <tr> + <td>Full Name</td> + <td>{{dataset.FullName}}</td> + </tr> - <dt>Short Name</dt> - <dd>{{dataset.ShortName}}</dd> - </dl> + <tr> + <td>Short Name</td> + <td>{{dataset.ShortName}}</td> + </tr> + </tbody> + </table> </div> </div> </div> |