2015-02-06 22:03:42 +01:00
|
|
|
<!--
|
|
|
|
vim: ts=2 noexpandtab
|
|
|
|
-->
|
|
|
|
{% extends "index.html" %}
|
2015-02-12 22:06:31 +01:00
|
|
|
{% block title %}{{ super() }} - Results{% endblock%}
|
2015-02-06 22:03:42 +01:00
|
|
|
{% set active_page = "search" %}
|
|
|
|
{% block content %}
|
2017-12-28 04:19:04 +01:00
|
|
|
<link href="{{ url_for("static", filename="css/result.css") }}" rel="stylesheet">
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>Name</th>
|
|
|
|
<th>Size</th>
|
|
|
|
<th>Snatches</th>
|
|
|
|
<th>UL</th>
|
|
|
|
<th>DL</th>
|
|
|
|
</tr>
|
2017-12-28 05:07:42 +01:00
|
|
|
{% for result in results %}
|
2017-12-28 04:19:04 +01:00
|
|
|
<tr>
|
|
|
|
<td>{{ result[1] }}</td>
|
|
|
|
<td>test</td>
|
|
|
|
<td>N/A</td>
|
|
|
|
<td>N/A</td>
|
|
|
|
<td>N/A</td>
|
|
|
|
</tr>
|
2017-12-28 05:07:42 +01:00
|
|
|
{% endfor %}
|
2017-12-28 04:19:04 +01:00
|
|
|
</table>
|
2015-02-06 22:03:42 +01:00
|
|
|
{% endblock content%}
|