{% 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 Nazwa hosta Użytkownik Port Typ Uwierzytelnianie Wybrany plik /etc/hosts Auto Deploy Auto Backup Wyłącz regex deploy Akcje
{{ h.id }} {% if h.use_daemon and h.type == 'linux' and h.daemon_url %} {% set daemon_str = h.daemon_url.split('://') | last %} {% set daemon_ip = daemon_str.split(':')[0] %} {{ daemon_ip }} {% else %} {{ h.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' %} Linux{% if h.use_daemon %} (Demon){% endif %} {% else %} Mikrotik {% endif %} {% if h.use_daemon and h.type == 'linux' %} - używa Demona - {% 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 %}
Dodaj nowy serwer Importuj z CSV Eksportuj do CSV
{% endblock %}