diff options
Diffstat (limited to 'python/Dawn/templates/spot_blotter.html')
| -rw-r--r-- | python/Dawn/templates/spot_blotter.html | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/python/Dawn/templates/spot_blotter.html b/python/Dawn/templates/spot_blotter.html deleted file mode 100644 index a4e8bb8d..00000000 --- a/python/Dawn/templates/spot_blotter.html +++ /dev/null @@ -1,35 +0,0 @@ -{% extends "base.html" %} -{% block content %} -<table class="table table-striped"> - <thead> - <tr> - <td>Deal ID</td> - <td>Trade Date</td> - <td>Settle Date</td> - <td>Strategy</td> - <td>Spot Rate</td> - <td>Buy CCY</td> - <td>Buy Amount</td> - <td>Sell CCY</td> - <td>Sell Amount</td> - <td>Commission CCY</td> - <td>Commission Amount</td> - </tr> - </thead> - {% for trade in trades %} - <tr> - <td><a href="{{url_for('trade_manage', tradeid=trade.id, kind='spot')}}">{{trade.dealid}}</a></td> - <td>{{trade.trade_date}}</td> - <td>{{trade.settle_date}}</td> - <td>{{trade.folder}}</td> - <td>{{"{:,.5f}".format(trade.spot_rate)}}</td> - <td>{{trade.buy_currency}}</td> - <td>{{"{:,.2f}".format(trade.buy_amount)}}</td> - <td>{{trade.sell_currency}}</td> - <td>{{"{:,.2f}".format(trade.sell_amount)}}</td> - <td>{{trade.commission_currency}}</td> - <td>{{trade.commission or "-"}}</td> - </tr> - {% endfor %} -</table> -{% endblock %} |
