{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %}
{% trans "Node SSH Credential" %}
{% trans "Proxmox Node" %} {{ object.node|linkify }}
{% trans "Username" %} {{ object.username }}
{% trans "Port" %} {{ object.port }}
{% trans "Authentication Method" %} {{ object.get_auth_method_display }}
{% trans "Secret Configured" %} {% if object.auth_method == "key" %} {{ object.has_private_key|yesno:"Yes,No" }} {% else %} {{ object.has_password|yesno:"Yes,No" }} {% endif %}
{% trans "Pinned Host-Key Fingerprint" %} {{ object.known_host_fingerprint }}
{% trans "Sudo Required" %} {{ object.sudo_required|yesno:"Yes,No" }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/comments.html' %}
{% endblock %}