{% extends "base.html" %} {% load static i18n %} {% block title %}{{ portfolio.name }} - Transactions{% endblock %} {% block content %}
Back to Dashboard

{{ portfolio.name }}

Transaction History

View Portfolio
{% if transactions %}
{% for tx in transactions %} {% endfor %}
Date Action Stock Quantity
{{ tx.date|date:"Y-m-d" }} {{ tx.action }} {{ tx.stock_code }} {{ tx.quantity|floatformat:2 }}
{% else %}

No transactions in this portfolio.

{% endif %}
{% endblock %}