{% extends "base.html" %} {% from "macros.html" import guide_box %} {% block title %}داشبورد{% endblock %} {% block content %}

داشبورد

{{ guide_box(guide, 'dashboard') }} {% if pending and not pending.confirmed %}
اعمال در انتظار تأیید! پروفایل «{{ pending.profile.name if pending.profile else '-' }}» اعمال شده. مشاهده و تأیید / rollback
{% endif %}
اطلاعات سیستم

Ubuntu: {{ status.ubuntu_description }}

Codename: {{ status.ubuntu_codename }}

Host root: {{ status.host_root }}

{% if state and state.initial_backup_done %} Backup اولیه گرفته شده {% else %} Backup اولیه در انتظار {% endif %}
{% if status.dns.dropin_exists %}
{{ status.dns.content }}
{% else %}

drop-in Mirror Manager تنظیم نشده

{% endif %}
Docker راهنما
{{ status.docker.config | tojson(indent=2) }}
APT sources.list راهنما
{{ status.apt.sources_list or 'تنظیم نشده' }}
{% if recent_tests %}

آخرین تست‌ها

{% for r in recent_tests %} {% endfor %}
میرورنوعنتیجهتأخیرزمان
{{ r.mirror.name }} {{ r.test_type }} {% if r.success %}{% else %}{% endif %} {{ '%.0f'|format(r.latency_ms) if r.latency_ms else '-' }} ms {{ r.tested_at.strftime('%Y-%m-%d %H:%M') }}
{% endif %} {% endblock %}