17 lines
		
	
	
		
			526 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			526 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% include 'header.html' %}
 | 
						|
 | 
						|
<h3>{{ page_type }} Offers</h3>
 | 
						|
{% if refresh %}
 | 
						|
<p>Page Refresh: {{ refresh }} seconds</p>
 | 
						|
{% endif %}
 | 
						|
 | 
						|
<table>
 | 
						|
<tr><th>At</th><th>Offer ID</th><th>Coin From</th><th>Coin To</th><th>Amount From</th><th>Amount To</th><th>Rate</th></tr>
 | 
						|
{% for o in offers %}
 | 
						|
<tr><td>{{ o[0] }}</td><td><a href=/offer/{{ o[1] }}>{{ o[1] }}</a></td><td>{{ o[2] }}</td><td>{{ o[3] }}</td><td>{{ o[4] }}</td><td>{{ o[5] }}</td><td>{{ o[6] }}</td></tr>
 | 
						|
{% endfor %}
 | 
						|
</table>
 | 
						|
 | 
						|
<p><a href="/">home</a></p>
 | 
						|
</body></html>
 |