Эх сурвалжийг харах

added more details to transaction list

control 3 жил өмнө
parent
commit
94bccbf97e

+ 5 - 0
app/templates/hash.html

@@ -34,13 +34,18 @@
 <table class="table">
 <thead class="thead-colour">
 <tr>
+<th>Filehash</th>
 <th>Transaction Date</th>
+<th>Transaction Price</th>
 <th>Transaction Hash</th>
 </tr>
 </thead>
 {% for tx in txlist %}
 <tr>
+
+    <td>{{ tx.filehash }}</td>
     <td>{{ tx.datetime }}</td>
+    <td>{{ tx.price }}</td>
     <td>{{ tx.txhash }}</td>
 </tr>
 {% endfor %}