diff options
Diffstat (limited to 'python/Dawn/templates')
| -rw-r--r-- | python/Dawn/templates/swaption_blotter.html | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/python/Dawn/templates/swaption_blotter.html b/python/Dawn/templates/swaption_blotter.html index ec827059..75e05ca0 100644 --- a/python/Dawn/templates/swaption_blotter.html +++ b/python/Dawn/templates/swaption_blotter.html @@ -11,10 +11,11 @@ <td>Type</td> <td>Expiry</td> <td>Strike</td> - <td>Price</td> + <td>Fee</td> <td>Description</td> <td>Red Code</td> <td>Counterparty</td> + <td>Trade Type</td> <td>Strategy</td> </tr> </thead> @@ -28,11 +29,12 @@ <td>{{trade.option_type}}</td> <td>{{trade.expiration_date}}</td> <td>{{trade.strike}}</td> - <td>{{trade.price}}</td> + <td>{{"{0:,.2f}".format(trade.fee)}}</td> <td>{{trade.security_desc}}</td> <td>{{trade.security_id}}</td> <td><a href="{{url_for('edit_counterparty', - cpcode=trade.counterparty.code)}}">{{trade.counterparty.name}}</a></td> + cpcode=trade.cp_code)}}">{{trade.name}}</a></td> + <td>{{trade.trade_type}}</td> <td>{{trade.folder}}</td> </tr> {% endfor %} |
