diff options
Diffstat (limited to 'app/trading/templates')
-rw-r--r-- | app/trading/templates/trading/list.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/app/trading/templates/trading/list.html b/app/trading/templates/trading/list.html index d00d599..d27fd4f 100644 --- a/app/trading/templates/trading/list.html +++ b/app/trading/templates/trading/list.html @@ -229,6 +229,7 @@ <th>Risk Total</th> <th>Profit Goal</th> <th>Profit/Loss</th> + <th>Realized Percent</th> <th>Notes</th> </tr> </thead> @@ -254,6 +255,7 @@ <td>${{object.risk_total}}</td> <td>${{object.profit_goal}}</td> <td>{{object.pl}}</td> + <td>{{object.realized_percent}}%</td> <td class="notes"> {% if object.notes %} <div class="wrapper"> @@ -280,7 +282,7 @@ <td></td> <td></td> <td>{{month}} P/L:</td> - <td>{{options_monthly_pl.pl__sum}}</td> + <td>${{options_monthly_pl.pl__sum}}</td> </tr> <tr> <td></td> @@ -293,7 +295,7 @@ <td></td> <td></td> <td>YTD P/L:</td> - <td>{{options_year_pl.pl__sum}}</td> + <td>${{options_year_pl.pl__sum}}</td> </tr> </table> |