aboutsummaryrefslogtreecommitdiffstats
path: root/browser/templates/frag_results.html.j2
diff options
context:
space:
mode:
Diffstat (limited to 'browser/templates/frag_results.html.j2')
-rw-r--r--browser/templates/frag_results.html.j218
1 files changed, 0 insertions, 18 deletions
diff --git a/browser/templates/frag_results.html.j2 b/browser/templates/frag_results.html.j2
deleted file mode 100644
index bfb54e9..0000000
--- a/browser/templates/frag_results.html.j2
+++ /dev/null
@@ -1,18 +0,0 @@
-<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>