{% extends "base.html" %} {% load static i18n %} {% block title %}{{ portfolio.name }} - Portfolio{% endblock %} {% block content %}
← Dashboard

{{ portfolio.name }}

Live Total Value

${{ summary.total_value|floatformat:0 }}

{{ summary.holdings|length }} position{{ summary.holdings|length|pluralize }}

Transactions

{{ portfolio.transactions.count }}

Total recorded

Current Holdings

{% if summary.holdings %} {% for stock in summary.holdings %} {% endfor %}
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 }}
{% else %}

No holdings in this portfolio.

{% endif %}
{% endblock %}