{% extends "base.html" %} {% load static i18n %} {% block title %}{{ portfolio.name }} - Portfolio{% endblock %} {% block content %}
{{ portfolio.name }}
Live Total Value
${{ summary.total_value|floatformat:0 }}
{{ summary.holdings|length }} position{{ summary.holdings|length|pluralize }}
Current Holdings
| Stock | Quantity | Current Price | Value |
|---|---|---|---|
| {{ stock.stock_code }} | {{ stock.quantity|floatformat:2 }} | {% if stock.current_price > 0 %}${{ stock.current_price|floatformat:2 }}{% else %}—{% endif %} | ${{ stock.current_value|floatformat:0 }} |
| Total | ${{ summary.total_value|floatformat:0 }} | ||
No holdings in this portfolio.