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

{{page_title}}

{% endblock page_title %} {% block content %}

{{investor.name}}


{{investor.email}}

{{investor.phone}}

INVESTMENT PRODUCT ({{investor.num_investment}})

{% for investment in investments|dictsort:"id" %} {% empty %} {% endfor %}
ID Amount Product Manager Name Manager Email
{{investment.id}} {{investment.amount}} {{investment.investment_product.title}} {{investment.investment_product.manager_name}} {{investment.investment_product.manager_email}}
No Products

CONTRACT

{% for contract in contracts|dictsort:"id" %} {% empty %} {% endfor %}
ID Status Title Investment Product E-Signature Document
{{contract.id}} {{contract.status|get_contract_status_badge}} {{contract.title}} {{contract.investment_product_title}} {% if contract.envelope_id %} View {% endif %} {% if contract.document_name %} View {% endif %} EDIT DEL
No Contracts
{% endblock content %} {% block third_party %} {% include "base/load_datatable.html" %} {% endblock third_party %}