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