{% extends "base.html" %} {% block title %}{{ inv.asset_name }}{% endblock %} {% block page_title %}{{ inv.asset_name }}{% endblock %} {% block topbar_actions %} Add Transaction Edit {% endblock %} {% block content %}
{{ inv.asset_name }}
{% if inv.ticker %}{{ inv.ticker }} · {% endif %} {{ asset_labels.get(inv.asset_type, inv.asset_type) }}
Shares
{{ inv.shares | shares }}
Avg Cost
{{ inv.avg_cost_basis | currency }}
Current Price
{% if inv.current_price %}{{ inv.current_price | currency }} {% else %}{% endif %}
{% if inv.last_price_update %}
{{ inv.last_price_update.strftime('%b %d, %H:%M') }}
{% endif %}
Market Value
{{ inv.current_value | currency }}

Total Cost Basis
{{ inv.total_cost | currency }}
Unrealized P&L
{% if inv.unrealized_gain >= 0 %}+{% endif %}{{ inv.unrealized_gain | currency }} ({% if inv.unrealized_gain_pct >= 0 %}+{% endif %}{{ inv.unrealized_gain_pct }}%)
{% if inv.notes %}
{{ inv.notes }}
{% endif %}
{% if inv.ticker %}
Price History — {{ inv.ticker }}
{% for tf in ['1W','1M','3M','6M','1Y'] %} {% endfor %}
Loading…
{% endif %}
Transaction History
{% if txns %} {% for txn in txns %} {% endfor %}
Date Type Shares Price Total
{{ txn.date.strftime('%b %d, %Y') }} {{ txn.transaction_type | title }} {{ txn.shares }} {{ txn.price_per_share | currency }} {{ txn.total_amount | currency }}
{% else %}

No transactions yet.

Record First Buy
{% endif %}
Back to Portfolio {% endblock %} {% block extra_css %} .tf-btn { font-size:11px;font-weight:600;padding:3px 10px;border-radius:4px;border:1px solid var(--border);background:#fff;color:var(--muted);cursor:pointer;transition:all .15s; } .tf-btn:hover { border-color:var(--accent);color:var(--accent); } .tf-btn.active { background:var(--accent);color:#fff;border-color:var(--accent); } .chg-badge { display:inline-flex;align-items:center;gap:3px;font-size:11px;font-weight:600;font-family:'DM Mono',monospace;padding:2px 7px;border-radius:4px; } .chg-up { background:#d1fae5;color:#065f46; } .chg-down { background:#fee2e2;color:#991b1b; } .chg-flat { background:#f1f5f9;color:#64748b; } {% endblock %} {% if inv.ticker %} {% block extra_js %} {% endblock %} {% endif %}