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

Dashboard

Hosting yönetim sistemi genel görünümü

Son güncelleme: {{ "now"|date:"d.m.Y H:i" }}

{{ projects.count }}

Toplam Proje

{{ active_sites_count }}

Aktif Site

{{ customers.count }}

Toplam Müşteri

{{ online_hosts_count }}/{{ ssh_credentials.count }}

Çevrimiçi Host

Yönet
Son İşlemler
{% if recent_logs %}
{% for log in recent_logs|slice:":10" %} {% endfor %}
Tarih İşlem Proje Durum
{{ log.created_at|date:"d.m H:i" }} {{ log.get_log_type_display }} {% if log.ssh_credential %} {{ log.ssh_credential.name }} {% else %} - {% endif %} {{ log.get_status_display }}
{% else %}

Henüz işlem geçmişi yok

{% endif %}
Sistem Durumu
Host Durumları
{% for host in ssh_credentials|slice:":5" %}
{{ host.name }} {% if host.connection_status == 'connected' %}Bağlı{% elif host.connection_status == 'failed' %}Hata{% else %}Bilinmiyor{% endif %}
{% empty %}

Host tanımlanmamış

{% endfor %}
Disk Kullanımı
{% for host in ssh_credentials %} {% if host.disk_usage %}
{{ host.name }} {{ host.disk_usage }}%
{% endif %} {% endfor %}
Hızlı İşlemler
Yedekleme Başlat
Son Yedeklemeler
{% if recent_backups %}
{% for project in recent_backups|slice:":6" %}
{{ project.name }}
{% if project.last_backup %} {{ project.last_backup|date:"d.m.Y H:i" }} {% else %} Yedek alınmamış {% endif %}
{% if project.last_backup %} Tamam {% else %} Bekliyor {% endif %}
{% endfor %}
{% else %}

Henüz yedekleme yapılmamış

{% endif %}
{% endblock %}