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

Data Sources

{% if sources %}
{% csrf_token %} {% for source in sources %} {% endfor %}
Kind Name Description {% if helpers_exist %} {% endif %}
{{ source.kind }} {{ source.label }} {{ source.description }}
{% for action in source.actions %} {% endfor %} {% if source.browser_supported_uri %} {% endif %} {% if source.protocol == 'ssh' %} {% endif %}
{% endif %}
{% if update %}

Update a Data Source

{% else %}

Add a Data Source

{% endif %} {% include "core/partials/data_source_warning.html" %} {% comment %} import tabs {% endcomment %}
{% comment %} generate forms from other modules {% endcomment %} {% for module_form in form_modules %}
{% csrf_token %} {{ module_form.form }}
{% if update == False %} {% else %} {% endif %}
Cancel
{% endfor %}
{% comment %} import generic URI {% endcomment %}
{% csrf_token %} {{ generic_form }}
{% if update == False %} {% else %} {% endif %}
Cancel
{% comment %} No Form Modules {% endcomment %}
Select what you want to add to the project
{% for module in no_form_modules %} {{ module.name }} {% endfor %}
{% endblock content %} {% block script %} {% include "core/base/tag_manager.html" %} {% comment %} potential js for dynamic forms {% endcomment %} {{ form_media }} {% endblock script %}