Count failed and successful bids by peer address.

This commit is contained in:
tecnovert
2021-11-15 01:26:43 +02:00
parent b152150932
commit 20c59663c1
14 changed files with 348 additions and 64 deletions

View File

@@ -0,0 +1,23 @@
{% include 'header.html' %}
<h3>Identity {{ data.identity_address }}</h3>
{% for m in messages %}
<p>{{ m }}</p>
{% endfor %}
<form method="post">
<table>
<tr><td>Successful Sent Bids</td><td>{{ data.num_sent_bids_successful }}</td></tr>
<tr><td>Successful Received Bids</td><td>{{ data.num_recv_bids_successful }}</td></tr>
<tr><td>Rejected Sent Bids</td><td>{{ data.num_sent_bids_rejected }}</td></tr>
<tr><td>Rejected Received Bids</td><td>{{ data.num_recv_bids_rejected }}</td></tr>
<tr><td>Failed Sent Bids</td><td>{{ data.num_sent_bids_failed }}</td></tr>
<tr><td>Failed Received Bids</td><td>{{ data.num_recv_bids_failed }}</td></tr>
</table>
<input type="hidden" name="formid" value="{{ form_id }}">
</form>
<p><a href="/">home</a></p>
</body></html>