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">
|
2017-12-28 08:36:44 +01:00
|
|
|
<script src="{{ url_for("static", filename="js/main.js") }}"></script>
|
2017-12-28 04:19:04 +01:00
|
|
|
<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>
|
2017-12-28 08:36:44 +01:00
|
|
|
<td><a href="/download/{{ result[0] }}">{{ result[1] }}</a></td>
|
2017-12-29 02:56:15 +01:00
|
|
|
<td>{{ result[2] }}</td>
|
2017-12-28 08:36:44 +01:00
|
|
|
<td>N/A</td>
|
|
|
|
<td>N/A</td>
|
|
|
|
<td>N/A</td>
|
2017-12-28 04:19:04 +01:00
|
|
|
</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%}
|