diff options
Diffstat (limited to 'python')
| -rw-r--r-- | python/Dawn/templates/cds_blotter.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/Dawn/templates/cds_blotter.html b/python/Dawn/templates/cds_blotter.html index afa22586..e4cdf5ce 100644 --- a/python/Dawn/templates/cds_blotter.html +++ b/python/Dawn/templates/cds_blotter.html @@ -9,6 +9,7 @@ <td>Description</td> <td>Red Code</td> <td>Notional</td> + <td>Upfront</td> <td>Attach</td> <td>Detach</td> <td>Counterparty</td> @@ -22,7 +23,8 @@ <td>{{trade.protection}}</td> <td>{{trade.security_desc}}</td> <td>{{trade.security_id}}</td> - <td>{{trade.notional}}</td> + <td>{{"{0:,.2f}".format(trade.notional)}}</td> + <td>{{"{0:,.2f}".format(trade.upfront)}}</td> <td>{{trade.attach if trade.attach is not none}}</td> <td>{{trade.detach if trade.detach is not none}}</td> <td><a href="{{url_for('edit_counterparty', |
