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

{% trans "Connect to GATE Project" %}

{% trans "Showing only your GATE projects, that are 'Complete', 'Scheduling', 'Waiting for report/feedback' or 'Ready for measure'." %} {% if gate_project_list or query %}

{% csrf_token %} {% for gate_project in gate_project_list %} {% endfor %}
GATE-ID {% trans "Status" %} {% trans "Title" %} {% trans "Proposal Number" %} {% trans "Proposer" %}
{{ gate_project.gate_id }} {% if gate_project.status == "Complete" %} {% trans "Complete" %} {% elif gate_project.status == "Scheduling" %} {% trans "Scheduling" %} {% elif gate_project.status == "Waiting for report/feedback" %} {% trans "Waiting for report/feedback" %} {% elif gate_project.status == "Ready for measure" %} {% trans "Ready for measure" %} {% endif %} {{ gate_project.title }}{% if gate_project.restricted %} ({% trans "restricted" %}){% endif %} {{ gate_project.proposal }} {{ gate_project.proposer }}
{% if gate_project.project %} {% trans 'Connected' %} {% else %} {% if project.gateproject_set.first %} {% else %} {% endif %} {% endif %}
{% else %}

{% trans "There are no Gate projects in the database that match the criteria." %}

{% endif %}
{% endblock %}