blob: 5a4c422a0b75929c04ba69bd5e0f49d855e4e992 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | {%macro display_preview_table(tableid, filetype)%}
<div class="card">
  <div class="card-body">
    <h5 class="card-title">{{filetype | title}}: File Preview</h5>
    <div class="card-text" style="overflow: scroll;">
      <table id="{{tableid}}" class="table table-condensed table-responsive">
        <thead>
          <tr>
          </tr>
        <tbody>
          <tr>
            <td class="data-row-template text-info"></td>
          </tr>
        </tbody>
      </table>
    </div>
  </div>
</div>
{%endmacro%}
 |