diff options
Diffstat (limited to 'app/trading/templates')
-rw-r--r-- | app/trading/templates/trading/list.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/trading/templates/trading/list.html b/app/trading/templates/trading/list.html index ef496cd..a0f8a78 100644 --- a/app/trading/templates/trading/list.html +++ b/app/trading/templates/trading/list.html @@ -16,6 +16,7 @@ <th>% Goal</th> <th>Risk/Reward</th> <th>Price Calc</th> + <th>Notes</th> </tr> </thead> {% for object in open_trades %} @@ -32,6 +33,7 @@ <td>{{object.goal_percent}}</td> <td>{{object.risk_reward}}</td> <td><input class="close_price_calc" id="id_close_price_{{forloop.counter}}"> <span id=profit"></span></td> + <td class="notes">{{object.notes}}</td> </tr> {% endfor %} </table> @@ -51,6 +53,7 @@ <th>$ Goal</th> <th>% Goal</th> <th>Risk/Reward</th> + <th>Notes</th> </tr> </thead> {% for object in watch_trades %} @@ -67,6 +70,7 @@ <td>{{object.goal_percent}}</td> <td>{{object.risk_reward}}</td> <td><input id="id_close_price"> <span id=profit"></span></td> + <td class="notes">{{object.notes}}</td> </tr> {% endfor %} </table> @@ -103,7 +107,7 @@ <td>${{object.goal_dollars}}</td> <td>${{object.realized_dollars}}</td> <td>{{object.realized_percent}}</td> - <td>{{object.notes}}</td> + <td class="notes">{{object.notes}}</td> </tr> {% endfor %} </table> |