AMOUNT
{{investment.amount|filter_safe_money_read_from_db|floatformat:"-2"|intcomma}}
INVESTORS
{{investment.investment_product.investments.count}} people
PERIOD
{% get_period_months investment.investment_product %}
month
{% get_investment_stage_list_tag investment=investment as stage_list %}
{% if stage_list %}
{% include "investment/partials/investment_step_module.html" with stage_list=stage_list investment_id=investment.id %}
{% for stage in stage_list %}
{% for step in stage.steps %}
{% include "investment/partials/step_modal.html" with step=step %}
{% endfor %}
{% endfor %}
{% endif %}