{% extends "base.html" %} {% load sekizai_tags currency i18n static %} {%block head%} {% addtoblock "js" %} {% endaddtoblock %} {% endblock %} {% block base_content %}

{% trans "Investments" %}

{{ investment.funding_organization.name }}{% if investment.funding_entity %} {% trans "trough the project" %} {{ investment.funding_entity.title }}{% endif %}

{{ investment.recipient_project.name }}

{% trans "Amount" %}

{% trans "Amount" %} {% currency investment.amount %} {% trans "U.S. Dollars" %}

{% trans "Basic information" %}

{% trans "Investor organization" %} {%if investment.funding_organization %}{{ investment.funding_organization.name }}{%else%}-{%endif%}
{% trans "Investor project" %} {%if investment.funding_project %}{{ investment.funding_project.name }}{%else%}-{%endif%}
{% trans "Recipient organization" %} {{ investment.recipient_organization.name }}
{% trans "Recipient project" %} {%if investment.recipient_project %}{{ investment.recipient_project.name }}{%else%}-{%endif%}
{% trans "Investment type" %} {{ investment.get_kind_display }}
{% trans "Investment date" %} {{ investment.contributed_at|date:"d/M/Y" }}
{% trans "Estimated completion date" %} {%if investment.completed_at %}{{ investment.completed_at|date:"d/M/Y" }}{%else%}-{%endif%}
{% if investment.parent or investment.investment2_set.all %}

{% trans "Investment Relations" %}

{% if investment.parent %} {% endif %} {% if investment.investment2_set.all %} {% for child in investment.investment2_set.all %} {% endfor %} {% endif %}
{% trans "Parent Investment" %} {%if investment.parent %}{{ investment.parent.funding_organization.name }} ==> {{ investment.parent.recipient_organization.name }}{%else%}-{%endif%}
{% trans "Children Investment" %} {{ child.funding_organization.name }} ==> {{ child.recipient_organization.name }}
{% endif %}
{% endblock %}