You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% 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><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>
|