{% extends service_app_name|add:"/base.html" %} {% load static i18n humanize mathfilters base_tag management_tag investment_tag %} {% block page_title %}

{{investment.investment_product.title}}

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

Summary

{{investment.amount|filter_safe_money_read_from_db|floatformat:"-2"|intcomma}}

{{investment.investment_product.investments.count}} {% if investment.investment_product.investments.count == 1 %}investor{% else %}investors{% endif %}

{% get_period_months investment.investment_product %} {% if investment.investment_product == 1 %}month{% else %}months{% endif %}

Investment Steps

{% 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 %}

Products

{% if products|length == 1 %} {% for product in products %}

{{ product.full_address }}

Added Date: {{ product.added_at }}

{{ product.num_bedroom }} beds {{ product.num_bathroom }} baths {{ product.sqft|floatformat:"-2"|intcomma }} sqft

Description

{{ product.description|safe }}

{% if product.status == 'INVESTMENT' and investment %}
Amount

{{investment.amount|filter_safe_money_read_from_db|floatformat:"-2"|intcomma}}

Investors

{{investment.investment_product.investments.count}} people

{% else %}
Tenants

{{ product.num_people_under_lease }} / {{ product.max_num_people }} people

Rent

{{ product.rent_under_lease|floatformat:"-2"|intcomma }}

{% endif %}
Facts and Features
Type
{{ product.property_type }}
Year Built
{{ product.built_year }}
{% if product.amenities.heater %}
Heating
{{ product.amenities.heater }}
{% endif %} {% if product.amenities.cooling %}
Cooling
{{ product.amenities.cooling }}
{% endif %}
Parking
{{ product.num_parking|floatformat:"-1"|intcomma }} space(s)
Lot
{{ product.sqft|floatformat:"-2"|intcomma }} sqft
{% endfor %} {% else %}
{% for product in products %}

Added Date: {{ product.added_at }}

{{ product.num_bedroom }} beds {{ product.num_bathroom }} baths {{ product.sqft|floatformat:"-2"|intcomma }} sqft

Description

{{ product.description|safe }}

{% if product.status == 'INVESTMENT' and investment %}
Amount

{{investment.amount|filter_safe_money_read_from_db|floatformat:"-2"|intcomma}}

Investors

{{investment.investment_product.investments.count}} people

{% else %}
Tenants

{{ product.num_people_under_lease }} / {{ product.max_num_people }} people

Rent

{{ product.rent_under_lease|floatformat:"-2"|intcomma }}

{% endif %}
Facts and Features
Type
{{ product.property_type }}
Year Built
{{ product.built_year }}
{% if product.amenities.heater %}
Heating
{{ product.amenities.heater }}
{% endif %} {% if product.amenities.cooling %}
Cooling
{{ product.amenities.cooling }}
{% endif %}
Parking
{{ product.num_parking|floatformat:"-1"|intcomma }} space(s)
Lot
{{ product.sqft|floatformat:"-2"|intcomma }} sqft
{% endfor %}
{% endif %}

Documents

{% for document in documents %} {% empty %} {% endfor %}
TITLE CREATED DATE STATUS
{{document.title}} {{document.created_at|date:"N j. Y"}} {{document.status|get_contract_status_badge}} {% if document.document_name %} VIEW {% endif %}
No Documents
{% for document in documents %} {% empty %} {% endfor %}
{{document.investment_product}}

{{document.status|get_contract_status_badge}} {{document.title}}

CREATED
{{document.created_at|date:"N j. Y"}}
{% if document.document_name %} VIEW {% endif %}
No Documents
{% endblock content %} {% block modal %} {% get_investment_stage_list_tag investment=investment as stage_list %} {% for stage in stage_list %} {% for step in stage.steps %} {% if step.description or step.contract.count > 0 or request.user.is_superuser %} {% include "investment/partials/investment_step_modal.html" with step=step %} {% endif %} {% endfor %} {% endfor %} {% endblock modal %} {% block third_party %} {% endblock third_party %}