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

{% trans "Projects" %}

{{ project.name }}

{% trans "Basic information" %}

Image: {{ project.title }}

{% trans "Project Description" %}

{% autoescape off %}{{ project.description }}{% endautoescape %}

{% trans "Acronym" %} {%if project.acronym %}{{ project.acronym }}{%else%}-{%endif%}
{% trans "Activity Description" %} {{ project.get_kind_display }}
{% trans "Executor organizations" %}
{% trans "Start date" %} {{ project.start_at }}
{% trans "Expected completion" %} {{ project.end_at }}

{% trans "Contact information" %}

{% trans "Email" %} {% if project.email %} {{project.email}} {% else %} - {% endif %}
{% trans "Phone numbers" %} {{ project.phone }}
{% trans "FAX" %} {{ project.fax }}
{% trans "Website" %} {{ project.url }}

{% trans "Geographical scope" %}

{% trans "Location" %} {% if project.location %} {{project.location.name }} {% else %} - {% endif %}
{% trans "Geographical Scope" %} {{ project.geofocus }}

{% trans "Activities type" %}

{%if project.activities.all.count%} {%else%} {%endif%}
    {% for ac in project.activities.all %}
  • {{ ac.name }}
  • {% endfor %}
{%trans "No activity types"%}
{%trans "Activity description" %} {%if project.activity_description%}{{project.activity_description}}{%else%}-{%endif%}
{%if project.investment_funding.all %}

{% trans "Investments to" %}

{% for ac in project.investment_funding.all %} {% endfor %}
{% trans "Investment" %} {% if project.location %} {{ ac.funding_organization.name }} sent {% currency ac.amount %} {% trans "to" %} {{ ac.recipient_organization.name }} {% else %} - {% endif %}
{% endif %} {%if project.investment_recipient.all %}

{% trans "Investments from" %}

{% for ac in project.investment_recipient.all %} {% endfor %}
{% trans "Investment" %} {% if project.location %} {{ ac.recipient_organization.name }} {% trans "received" %} {% currency ac.amount %} {% trans "from" %} {{ ac.funding_organization.name }} {% else %} - {% endif %}
{% endif %}
{% endblock %}