{% extends "layout.html" %} {% block title %}Asset Allocation Details{% endblock %} {% block content %}

Asset Allocation Details

{# Child asset classes #} {% if model.classes %}

Child classes

{% endif %} {# Child stocks #} {% if model.stocks %}

Stocks

{% for stock in model.stocks %} {% endfor %}
Symbol Name Quantity Value Value in base cur.
{{ stock.name }} {{ stock.description }} {{ stock.quantity }} {{ "{:,.2f}".format(stock.value) }} {{ stock.currency }} {{ "{:,.2f}".format(stock.value_base_cur) }} {{ model.base_currency }}
{% endif %}
{% endblock %}