{% if projects_health %} {% for project_id, project in projects_health.items() %} {{ project_id }} {% if project.healthy or project.status == 'healthy' %} {{ t.healthy }} {% elif project.status == 'warning' %} {% if lang == 'fa' %}هشدار{% else %}Warning{% endif %} {% elif project.status == 'unhealthy' %} {% if lang == 'fa' %}ناسالم{% else %}Unhealthy{% endif %} {% else %} {% if lang == 'fa' %}نامشخص{% else %}Unknown{% endif %} {% endif %} {{ project.response_time_ms|round(2) }} ms {{ project.error_rate_percent|round(2) }}% {{ project.last_check[:19] if project.last_check else '-' }} {% endfor %} {% else %}

{% if lang == 'fa' %}هیچ پروژه‌ای برای بررسی یافت نشد{% else %}No projects found for health check{% endif %}

{% endif %}