{% extends "administrator/base.html" %} {% load static i18n base_tag management_tag %} {% block title %}{{page_title}}{% endblock %} {% block content %}

{{investment.user.name}} ({{investment.user.email}})

{{investment.investment_product.manager.name}} ({{investment.investment_product.manager.email}})

{{investment.amount|filter_safe_money_read_from_db}}

{{investment.investment_product.start_date}} ~ {{investment.investment_product.end_date}}

{% if stage_list %}

INVESTMENT STEPS

{% include "investment/partials/investment_step_module.html" with stage_list=stage_list investment_id=investment.id %}
{% endif %}

DOCUMENTS

{% for contract in contracts|dictsort:"id" %} {% empty %} {% endfor %}
ID Status Title Template Attachment
{{contract.id}} {{contract.status|get_contract_status_badge}} {{contract.title}} {{contract.template_title}} {% if contract.document_name %} View {% endif %} EDIT DEL
No Contracts
{% endblock content %} {% block modal %} {% for stage in stage_list %} {% for step in stage.steps %} {% include "investment/partials/investment_step_modal.html" with step=step %} {% endfor %} {% endfor %} {% endblock modal %} {% block third_party %} {% include "base/load_datatable.html" %} {% endblock third_party %}