58 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% include 'header.html' %}
 | 
						|
 | 
						|
<h3>{{ page_type }} Bids</h3>
 | 
						|
{% if refresh %}
 | 
						|
<p>Page Refresh: {{ refresh }} seconds</p>
 | 
						|
{% endif %}
 | 
						|
{% for m in messages %}
 | 
						|
<p>{{ m }}</p>
 | 
						|
{% endfor %}
 | 
						|
 | 
						|
<form method="post">
 | 
						|
<table>
 | 
						|
 | 
						|
<tr><td>Sort By</td><td>
 | 
						|
<select name="sort_by">
 | 
						|
<option value="created_at"{% if filters.sort_by=='created_at' %} selected{% endif %}>Created At</option>
 | 
						|
</select>
 | 
						|
<select name="sort_dir">
 | 
						|
<option value="asc"{% if filters.sort_dir=='asc' %} selected{% endif %}>Ascending</option>
 | 
						|
<option value="desc"{% if filters.sort_dir=='desc' %} selected{% endif %}>Descending</option>
 | 
						|
</select>
 | 
						|
</td></tr>
 | 
						|
<tr><td>State</td><td>
 | 
						|
<select name="state">
 | 
						|
<option value="-1"{% if filters.bid_state_ind==-1 %} selected{% endif %}>-- Any --</option>
 | 
						|
{% for s in data.bid_states %}
 | 
						|
<option value="{{ s[0] }}"{% if filters.bid_state_ind==s[0] %} selected{% endif %}>{{ s[1] }}</option>
 | 
						|
{% endfor %}
 | 
						|
</select>
 | 
						|
<tr><td>Include Expired</td><td>
 | 
						|
<select name="with_expired">
 | 
						|
<option value="true"{% if filters.with_expired==true %} selected{% endif %}>Include</option>
 | 
						|
<option value="false"{% if filters.with_expired==false %} selected{% endif %}>Exclude</option>
 | 
						|
</select>
 | 
						|
</td></tr>
 | 
						|
 | 
						|
<tr><td><input type="submit" name='applyfilters' value="Apply Filters"></td><td><input type="submit" name='clearfilters' value="Clear Filters"></td></tr>
 | 
						|
<tr><td><input type="submit" name='pageback' value="Page Back"></td><td>Page: {{ filters.page_no }}</td><td><input type="submit" name='pageforwards' value="Page Forwards"></td></tr>
 | 
						|
</table>
 | 
						|
<input type="hidden" name="formid" value="{{ form_id }}">
 | 
						|
<input type="hidden" name="pageno" value="{{ filters.page_no }}">
 | 
						|
</form>
 | 
						|
 | 
						|
<table>
 | 
						|
<tr><th>At</th><th>Bid ID</th><th>Offer ID</th><th>Bid From</th><th>Bid Status</th><th>ITX Status</th><th>PTX Status</th></tr>
 | 
						|
{% for b in bids %}
 | 
						|
<tr>
 | 
						|
<td>{{ b[0] }}</td>
 | 
						|
<td><a class="monospace" href=/bid/{{ b[1] }}>{{ b[1] }}</a></td>
 | 
						|
<td><a class="monospace" href=/offer/{{ b[2] }}>{{ b[2] }}</a></td>
 | 
						|
<td><a class="monospace" href=/identity/{{ b[6] }}>{{ b[6] }}</a></td>
 | 
						|
<td>{{ b[3] }}</td><td>{{ b[4] }}</td><td>{{ b[5] }}</td></tr>
 | 
						|
{% endfor %}
 | 
						|
</table>
 | 
						|
 | 
						|
<p><a href="/">home</a></p>
 | 
						|
</body></html>
 |