diff options
Diffstat (limited to 'python/Dawn/templates')
| -rw-r--r-- | python/Dawn/templates/wire_blotter.html | 4 | ||||
| -rw-r--r-- | python/Dawn/templates/wire_entry.html | 12 |
2 files changed, 2 insertions, 14 deletions
diff --git a/python/Dawn/templates/wire_blotter.html b/python/Dawn/templates/wire_blotter.html index 9f70621d..e4e3e2b8 100644 --- a/python/Dawn/templates/wire_blotter.html +++ b/python/Dawn/templates/wire_blotter.html @@ -5,20 +5,20 @@ <tr> <td>Deal ID</td> <td>Trade Date</td> - <td>Settle 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.settle_date}}</td> <td>{{trade.folder}}</td> <td>{{trade.account.name}}</td> <td>{{trade.amount}}</td> + <td>{{trade.currency}}</td> </tr> {% endfor %} </table> diff --git a/python/Dawn/templates/wire_entry.html b/python/Dawn/templates/wire_entry.html index 1e69ccd0..d22d0ee9 100644 --- a/python/Dawn/templates/wire_entry.html +++ b/python/Dawn/templates/wire_entry.html @@ -48,18 +48,6 @@ </div> </div> - <div class="form-group"> - - <label class="control-label col-md-4" for="settle_date"> - settle_date - </label> - - <div class="col-md-6"> - <input class="form-control" id="settle_date" name="settle_date" value="{{settle_date}}" type="date"> - </div> - - </div> - <div class="form-group "> <div class="col-md-3"> |
