{# Confirm the deletion of a usermap entry #} {% extends "index.html" %} {% load i18n %} {% block menu %} {% with "users" as current_category %} {{ block.super }} {% endwith %} {% endblock %} {% block content %}
{% csrf_token %}

{% blocktrans with remote_user=assoc_user.name host=object.host.name owner=assoc_user.fullname %} Warning! If you delete the username mapping, it will not neccesarily revoke the access to the host for {{ owner }}. In fact, it will just (try) to deploy the keys of the user to {{ remote_user }}@{{ host }}. {% endblocktrans %}

{% blocktrans with remote_user=object.username host=object.host.name owner=assoc_user.fullname %} Additionally, please note, that skd won't remove the keys of {{ owner }} from user {{ remote_user }}@{{ host }}! If that user still exist on that system, you have to manually remove the keys. {% endblocktrans %}

{% blocktrans with owner=assoc_user.fullname %} Do you really want to delete the following mapping from user {{ owner }}? {% endblocktrans %}

{% trans "Host" %} {{ object.host.name }}
{% trans "Username" %} {{ object.username }}
{% trans "Comment" %}
{{ object.comment }}
{% trans 'No' %}  
{% endblock content %}