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

Provided Logins

{% if logins %}
{% csrf_token %} {% for login in logins %} {% endfor %}
ID Type Name
{{ login.login_info_id }} {{ login.type }} {{ login.name }}
{% if login.type == login_types.SSH %}
{% if login.connected %} Disconnect {% else %} Connect {% endif %}
{% else %}
{% endif %}
{% endif %}
{% if update %}

Update a Login

{% else %}

Add a Login

{% endif %}
{% csrf_token %}
Login Type
{% if update %} {% else %} {% endif %}
Cancel
{{ form.errors }}
{% endblock content %}