{% extends "base.html" %} {% load sekizai_tags currency i18n static %} {%block head%} {% addtoblock "js" %} {% endaddtoblock %} {% endblock %} {% block base_content %}
{% trans "Amount" %} | {% currency investment.amount %} {% trans "U.S. Dollars" %} |
---|
{% 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%} |
{% 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 }} |