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, 0 insertions, 25 deletions
diff --git a/python/Dawn/templates/wire_blotter.html b/python/Dawn/templates/wire_blotter.html
deleted file mode 100644
index e4e3e2b8..00000000
--- a/python/Dawn/templates/wire_blotter.html
+++ /dev/null
@@ -1,25 +0,0 @@
-{% extends "base.html" %}
-{% block content %}
-<table class="table table-striped">
- <thead>
- <tr>
- <td>Deal ID</td>
- <td>Trade 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.folder}}</td>
- <td>{{trade.account.name}}</td>
- <td>{{trade.amount}}</td>
- <td>{{trade.currency}}</td>
- </tr>
- {% endfor %}
-</table>
-{% endblock %}