blob: 7509158754b3dc3c1c706b4abdc760b972c2603a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{%macro display_preview_table(tableid, filetype)%}
<div class="card" style="max-width: 676px;">
<div class="card-body">
<h5 class="card-title">Phenotypes '{{filetype | title}}' File Preview</h5>
<div class="card-text">
<table id="{{tableid}}" class="table table-condensed table-responsive" style="overflow: hidden;">
<thead>
<tr>
</tr>
<tbody>
<tr>
<td class="data-row-template text-info">
Provide a phenotype '{{filetype | lower}}' file to preview.
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
{%endmacro%}
|