aboutsummaryrefslogtreecommitdiffstats
path: root/browser/templates/frag_results.html.j2
blob: bfb54e97cb53968aa5a4e06d548c28deb8e6e0b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<table id="results">
<thead>
    <tr>
    {% for field_name in field_names %}
        <th>{{ field_name }}</th>
    {% endfor %}
    </tr>
</thead>
<tbody>
    {% for row in rows %}
    <tr>
    {% for field in row %}
        <td>{{ field }}</td>
    {% endfor %}
    </tr>
    {% endfor %}
</tbody>
</table>