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.html25
1 files changed, 5 insertions, 20 deletions
diff --git a/python/Dawn/templates/wire_blotter.html b/python/Dawn/templates/wire_blotter.html
index 8397e5df..9f70621d 100644
--- a/python/Dawn/templates/wire_blotter.html
+++ b/python/Dawn/templates/wire_blotter.html
@@ -6,34 +6,19 @@
<td>Deal ID</td>
<td>Trade Date</td>
<td>Settle Date</td>
- <td>Buy/Sell</td>
- <td>Quantity</td>
- <td>Type</td>
- <td>Maturity</td>
- <td>Price</td>
- <td>Commission</td>
- <td>Description</td>
- <td>Ticker</td>
- <td>Counterparty</td>
<td>Strategy</td>
+ <td>Account</td>
+ <td>Amount</td>
</tr>
</thead>
{% for trade in trades %}
<tr>
- <td><a href="{{url_for('wire_manage', wire_id=wire.id)}}">{{wire.dealid}}</a></td>
+ <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>{% if trade.buysell %}Buy{% else %}Sell{% endif %}</td>
- <td>{{trade.quantity}}</td>
- <td>{{trade.swap_type}}</td>
- <td>{{trade.maturity}}</td>
- <td>{{trade.price}}</td>
- <td>{{trade.commission}}</td>
- <td>{{trade.security_desc}}</td>
- <td>{{trade.bbg_ticker}}</td>
- <td><a href="{{url_for('edit_counterparty',
- cpcode=trade.counterparty.code)}}">{{trade.counterparty.name}}</a></td>
<td>{{trade.folder}}</td>
+ <td>{{trade.account.name}}</td>
+ <td>{{trade.amount}}</td>
</tr>
{% endfor %}
</table>