{% extends "base.html" %} {% block title %}Lista serwerów - /etc/hosts Manager{% endblock %} {% block extra_css %} {{ super() }} {% endblock %} {% block content %}

Lista serwerów

{% for h in hosts %} {% endfor %}
ID Serwer Użytkownik Port Typ Uwierzytelnianie Wybrany /etc/hosts Auto Deploy Auto Backup Wyłącz CIDR / regex Wyłącz local-defaults Akcje
{{ h.id }} {% if h.use_daemon and h.type == 'linux' and h.daemon_url %} {{ h.resolved_daemon }} {% else %} {{ h.resolved_hostname }} {% endif %} {% if h.use_daemon and h.type == 'linux' %} {% else %} {{ h.username }} {% endif %} {% if h.use_daemon and h.type == 'linux' %} {% else %} {{ h.port }} {% endif %} {% if h.type == 'linux' %} {% else %} {% endif %} {% if h.use_daemon and h.type == 'linux' %} - linux daemon - {% else %} {% if h.auth_method == 'password' %} Hasło {% elif h.auth_method == 'ssh_key' %} Klucz SSH {% elif h.auth_method == 'global_key' %} Globalny klucz {% else %} {{ h.auth_method }} {% endif %} {% endif %} {% if h.preferred_hostfile %} {{ h.preferred_hostfile.title }} {% else %} (Default) {% endif %}
Edytuj {% if h.use_daemon and h.type == 'linux' %} {% else %} Test {% endif %} Backup
Dodaj nowy serwer Importuj z CSV Eksportuj do CSV
{% endblock %} {% block extra_js %} {{ super() }} {% endblock %}