aboutsummaryrefslogtreecommitdiffstats
path: root/browser/templates/index.html.j2
blob: 9713944f2faae3f2a64000144a1525c08b4dd94c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% extends "base.html.j2" %}

{% block content %}
<main>
    {% include "aside.html.j2" %}

    <div class="results">
        <table>
        <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>
    </div>
</main>
{% endblock %}