aboutsummaryrefslogtreecommitdiffstats
path: root/python/Dawn/templates/wire_blotter.html
blob: 9f70621d1b827646d1e9e3b2df6419fbd9258c32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% 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>Account</td>
      <td>Amount</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.settle_date}}</td>
    <td>{{trade.folder}}</td>
    <td>{{trade.account.name}}</td>
    <td>{{trade.amount}}</td>
  </tr>
  {% endfor %}
</table>
{% endblock %}