{% extends "./layout.html" %} {% block title %}Allocations{% endblock %} {% block content %}

Filter Assets based on Stock Performance

Using above threshold value, it will return all assets allocation above the specified stocks percentage number.

{% for allocation in allocations %}
Asset Allocations for {{allocation.firstName}} {{allocation.lastName}}

Domestic Stocks : {{allocation.stocks}} %

Funds: {{allocation.funds}} %

Bonds: {{allocation.bonds}} %

{% endfor %}
{% endblock %}