{% extends "layout.html" %} {% block title %}Asset Allocation Details{% endblock %} {% block content %}
Symbol | Name | Quantity | Value | Value in base cur. | {% for stock in model.stocks %}
---|---|---|---|---|
{{ stock.name }} | {{ stock.description }} | {{ stock.quantity }} | {{ "{:,.2f}".format(stock.value) }} {{ stock.currency }} | {{ "{:,.2f}".format(stock.value_base_cur) }} {{ model.base_currency }} |