about summary refs log tree commit diff
path: root/uploader/templates/phenotypes/macro-display-preview-table.html
blob: 6dffe9f817e53813263690fcd0f9c9da297059df (plain)
1
2
3
4
5
6
7
8
9
10
11
{%macro display_preview_table(tableid, filetype)%}
<div class="table-responsive"
     style="max-width:39.2em;border-radius:5px;border: solid 1px;overflow-x: scroll;">
  <h5>{{filetype | title}}: File Preview</h5>
  <table id="{{tableid}}" class="table">
    <thead><tr></tr></thead>

    <tbody></tbody>
  </table>
</div>
{%endmacro%}