{% extends 'core/base/base.html' %} {% comment %} SPDX-FileCopyrightText: 2022 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load static %} {% block content %}
Projects {% if project.label %}{{ project.label }}{% else %}New Project{% endif %} GATE

Connect to GATE Project

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 Status Title Proposal Number Proposer
{{ gate_project.gate_id }} {% if gate_project.status == "Complete" %} {% elif gate_project.status == "Scheduling" %} {% elif gate_project.status == "Waiting for report/feedback" %} {% elif gate_project.status == "Ready for measure" %} {% endif %} {{ gate_project.title }}{% if gate_project.restricted %} (restricted){% endif %} {{ gate_project.proposal }} {{ gate_project.proposer }}
{% if gate_project.projects.all %} Connected {% else %} {% if project_is_already_connected %} {% else %} {% endif %} {% endif %}
{% else %}

There are no Gate projects in the database that match the criteria.

{% endif %}
{% endblock %}