System Information

{% if debug_info.system.error %}
✗ System Error: {{ debug_info.system.error }}
{% else %}
Kernel: {{ debug_info.system.release }}
{% endif %}

Application Information

{% if debug_info.application.error %}
✗ Application Error: {{ debug_info.application.error }}
{% else %}
Borgitory Version: {{ debug_info.application.borgitory_version }}
Working Directory: {{ debug_info.application.working_directory }}
{% endif %}

Database Information

{% if debug_info.database.database_accessible %}
Repositories: {{ debug_info.database.repository_count }}
Total Jobs: {{ debug_info.database.total_jobs }}
Jobs Today: {{ debug_info.database.jobs_today }}
Database Type: {{ debug_info.database.database_type }}
Database URL: {{ debug_info.database.database_url }}
Database Size: {{ debug_info.database.database_size }}
Status: ✓ Accessible
{% else %}
✗ Database Error: {{ debug_info.database.error }}
{% endif %}

Tool Versions

{% if not debug_info.system.error %}
Python: ✓ Available
{{ debug_info.system.python_version.split()[0] }}
{% endif %} {% for tool_name, tool_info in debug_info.tools.items() %}
{{ tool_name|title }}: {% if tool_info.accessible %} ✓ Available {% else %} ✗ Not Available {% endif %}
{% if tool_info.accessible %}
{{ tool_info.version }}
{% else %}
{{ tool_info.error }}
{% endif %}
{% endfor %}

Job Manager Information

{% if debug_info.job_manager.job_manager_running %}
Status: ✓ Running
Active Jobs: {{ debug_info.job_manager.active_jobs }}
Total Jobs: {{ debug_info.job_manager.total_jobs }}
{% else %}
✗ Job Manager Error: {{ debug_info.job_manager.error }}
{% endif %}

WSL Information

{% if debug_info.wsl.error %}
✗ WSL Error: {{ debug_info.wsl.error }}
{% elif debug_info.wsl.wsl_available %}
Status: ✓ Available
WSL Version: {{ debug_info.wsl.wsl_version or 'Unknown' }}
Default Distribution: {{ debug_info.wsl.default_distribution or 'None' }}
{% if debug_info.wsl.wsl_kernel_version %}
Kernel Version: {{ debug_info.wsl.wsl_kernel_version }}
{% endif %} {% if debug_info.wsl.windows_version %}
Windows Version: {{ debug_info.wsl.windows_version }}
{% endif %}
Path Access: {% if debug_info.wsl.wsl_path_accessible %} ✓ Working {% else %} ✗ Failed {% endif %}
{% else %}
⚠ WSL Status: Not Available
{% endif %}

Environment Variables

{% for key, value in debug_info.environment.items() %}
{{ key }}: {{ value }}
{% endfor %}