diff options
-rw-r--r-- | app/trading/templates/trading/list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/trading/templates/trading/list.html b/app/trading/templates/trading/list.html index 5c0c89e..909d2c4 100644 --- a/app/trading/templates/trading/list.html +++ b/app/trading/templates/trading/list.html @@ -32,8 +32,8 @@ {%endfor%} </div> - <td>${{object.total_invested}}</td> - <td>${{object.trade_risk}}</td> + <td>${{object.total_invested|floatformat:2}}</td> + <td>${{object.trade_risk|floatformat:2}}</td> <td>{{object.portfolio_risk|floatformat:2}}%</td> <td>${{object.sell_half_at|floatformat:2}}</td> <td>${{object.stop_price|floatformat:2}}</td> |