11 lines
		
	
	
	
		
			251 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			251 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% block content %}
 | |
| <ul class="torrents">
 | |
| {% for torrent in torrents %}
 | |
| <li>
 | |
|     <span>{{ torrent.name[:50] }}</span>
 | |
|     <span>{{ torrent.format_eta() }}</span>
 | |
|     <span><a hx-post="/delete">delete</a></span>
 | |
| </li>
 | |
| {% endfor %}
 | |
| </ul>
 | |
| {% endblock %}
 |