{% extends 'ssh_manager/base.html' %} {% block title %}Host Yönetimi - Hosting Yönetim Paneli{% endblock %} {% block content %}

Host Yönetimi

SSH bağlantı bilgileri ve sunucu durumları
{% for host in ssh_credentials %} {% empty %} {% endfor %}
Host Adı IP/Domain Port Kullanıcı Durum Disk Kullanımı Son Kontrol İşlemler
{{ host.name }} {% if host.is_default %} Varsayılan {% endif %} {{ host.hostname }} {{ host.port }} {{ host.username }} {% if host.connection_status == 'connected' %} Bağlı {% elif host.connection_status == 'failed' %} Hata {% else %} Bilinmiyor {% endif %} {% if host.disk_usage %}
{{ host.disk_usage }}%
{% else %} - {% endif %}
{% if host.last_checked %} {{ host.last_checked|date:"d.m.Y H:i" }} {% else %} Hiçbir zaman {% endif %}
Henüz host tanımlanmamış
{% endblock %}