aboutsummaryrefslogtreecommitdiffstats
path: root/python/Dawn/templates/wire_blotter.html
diff options
context:
space:
mode:
Diffstat (limited to 'python/Dawn/templates/wire_blotter.html')
-rw-r--r--python/Dawn/templates/wire_blotter.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/Dawn/templates/wire_blotter.html b/python/Dawn/templates/wire_blotter.html
index 9f70621d..e4e3e2b8 100644
--- a/python/Dawn/templates/wire_blotter.html
+++ b/python/Dawn/templates/wire_blotter.html
@@ -5,20 +5,20 @@
<tr>
<td>Deal ID</td>
<td>Trade Date</td>
- <td>Settle Date</td>
<td>Strategy</td>
<td>Account</td>
<td>Amount</td>
+ <td>Currency</td>
</tr>
</thead>
{% for trade in trades %}
<tr>
<td><a href="{{url_for('wire_manage', wire_id=trade.id)}}">{{trade.dealid}}</a></td>
<td>{{trade.trade_date}}</td>
- <td>{{trade.settle_date}}</td>
<td>{{trade.folder}}</td>
<td>{{trade.account.name}}</td>
<td>{{trade.amount}}</td>
+ <td>{{trade.currency}}</td>
</tr>
{% endfor %}
</table>