28 lines
		
	
	
		
			545 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			545 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
vim: ts=2 noexpandtab
 | 
						|
-->
 | 
						|
{% extends "index.html" %}
 | 
						|
{% block title %}{{ super() }} - Results{% endblock%}
 | 
						|
{% set active_page = "search" %}
 | 
						|
{% block content %}
 | 
						|
<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>
 | 
						|
		{% for result in results %}
 | 
						|
		<tr>
 | 
						|
			<td>{{ result[1] }}</td>
 | 
						|
				<td>test</td>
 | 
						|
				<td>N/A</td>
 | 
						|
				<td>N/A</td>
 | 
						|
				<td>N/A</td>
 | 
						|
		</tr>
 | 
						|
		{% endfor %}
 | 
						|
	</table>
 | 
						|
{% endblock content%}
 |