{% extends 'core/base.html' %} {% load i18n %} {% block content %}

{% trans "Gate Project" %}

{% trans "GATE-ID" %} {{ gate_project.gate_id }}
{% trans "Title" %} {{ gate_project.title }}
{% trans "Proposer" %} {{ gate_project.proposer }} {% if gate_project.proposer == project.owner %} ({% trans "Owner" %} {% trans "of Project" %} "{{ project }}") {% elif gate_project.proposer in project.co_owner.all %} ({% trans "Co owner" %} {% trans "of Project" %} "{{ project }}") {% else %} ({% trans "Not owner" %} {% trans "of Project" %} "{{ project }}") {% endif %}
{% trans "Abstract" %} {{ gate_project.abstract }}
{% trans "Proposal" %} {{ gate_project.proposal }}
{% trans "Restricted" %} {% if gate_project.restricted %} {% trans "yes" %} {% else %} {% trans "no" %} {% endif %}
{% trans "Responsible Experimentalist" %} {{ gate_project.responsible_experimentalist }}
{% trans "Local Contacts" %} {{ gate_project.local_contacts }}

{% trans "Co-Proposers" %}

{% for guy in gate_project.co_proposer.all %} {% endfor %}
{% trans "Person" %} {% trans "Status in Project" %}
{{ guy }} {% if guy == project.owner %} {% trans "Owner" %} {% elif guy in project.co_owner.all %} {% trans "Member" %} {% else %} {% trans "Removed Member" %} {% endif %}

{% if is_owner %}
{% csrf_token %}
{% if import == True %} {% else %} {% endif %}
{% if project.gateproject_set.first.title != project.project_name %} {% else %} {% endif %}
{% endif %}
{% endblock %}