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

{% trans "Organizations" %}

{{ organization.name }}

{% trans "Basic information" %}

Image: {{ organization.name }}

{% trans "Organization Description" %}

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

{% trans "Acronym" %} {%if organization.acronym %}{{ organization.acronym }}{%else%}-{%endif%}
{% trans "Organization type" %} {%if organization.kind %}{{ organization.get_kind_display }}{%else%}-{%endif%}
{% trans "CEO/President/Director" %} {%if organization.director %} {{ organization.director }} {%else%} - {%endif%}
{% trans "Executed projects" %} {%if organization.project2_set.all %}
    {% for po in organization.project2_set.all %}
  • {{ po.name }}
  • {% endfor %}
{%else%} - {%endif%}

{% trans "Address" %}

{% trans "Address" %} {%if organization.address%}{{ organization.address }}{%else%}-{%endif%}
{% trans "ZIP" %} {%if organization.zipcode %}{{ organization.zipcode }}{%else%}-{%endif%}
{% trans "Country" %} {%if organization.country %}{{ organization.country }}{%else%}-{%endif%}
{% trans "State/Province/Region" %} {%if organization.state %}{{ organization.state }}{%else%}-{%endif%}
{% trans "City" %} {%if organization.city %}{{ organization.city }}{%else%}-{%endif%}

{% trans "Contact information" %}

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