{% extends "core/base/base.html" %} {% comment %} SPDX-FileCopyrightText: 2023 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load heliport %} {% block content %}

UNICORE Storages

{% if storages %}
{% csrf_token %} {% for storage, actions in storages|zip:storage_actions %} {% endfor %}
ID Name Description {% if helper_exists %} {% endif %}
{{ storage.pk }} {{ storage.label }} {{ storage.description }}
{% for action in actions %} {% endfor %}
{% endif %}

Add one of your UNICORE storages to this project

{% csrf_token %} {% for storage, actions in available_storages|zip:available_storages_actions %} {% endfor %}
Name {% if storages_from_job_available %} {% endif %}
{{ storage }}
{% for action in actions %} {% endfor %}
{% endblock content %}