{# SKD Setup/Configuration area #} {% extends "index.html" %} {% load i18n %} {% block menu %} {% with "home" as current_category %} {{ block.super }} {% endwith %} {% endblock %} {% block content %}

{% trans "Welcome to skd" %}

{% blocktrans %} This form enables you to set up the basic configuration of skd. {% endblocktrans %}

{% csrf_token %}
{% trans "SKD master keys" %}
{% if sshkey_public %}

{% trans "The following public key was created:" %}

{{ sshkey_public }}

{% blocktrans %} Put that key in the authorized_keys-file of every managed host. {% endblocktrans %}


{% blocktrans %} To generate a new key, optionally enter a passphrase and click on "Generate new key". {% endblocktrans %}

{% else %}

{% trans "There are no SSH-Keys generated yet." %}

{% endif %} {% include "skd/keygen.html" %}
{% trans "SKD-Groups" %}
{% if no_groups %}

{% blocktrans %} skd can create basic authentication groups when you use the internal authentication database, that have all needed permissions set right. {% endblocktrans %}

{% blocktrans %} These groups are: (if not noted otherwise, each higher group contains all permissions from the lower groups) {% endblocktrans %}

{% for group in default_groups %} {% endfor %}
{{ group.name }} {% trans group.description|safe %}
{% blocktrans %} (Django administrators have full control about everything) {% endblocktrans %}
{% else %}
{% blocktrans %} skd-Defaultgroups have already been generated. {% endblocktrans %}
{% endif %}
{% endblock content %}