{% extends 'core/base.html' %} {% load i18n %} {% block content %}
{% 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 "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 %} |