{% extends service_app_name|add:"/base.html" %} {% load i18n humanize mathfilters base_tag management_tag investment_tag %} {% block content %}
{% for investment in investments %}
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 %}

Investment Steps

{% 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 %}
{% endfor %}
{% endblock content %} {% block modal %} {% get_current_language as LANGUAGE_CODE %} {% get_agreement_by_type_language service_type='management' agreement_type='pay' language=LANGUAGE_CODE as AGREEMENT_PAY %} {% include 'management/partials/base_modal.html' with id="agreement_pay" title=AGREEMENT_PAY.title content=AGREEMENT_PAY.content|safe %} {% endblock modal %}