{% if message %}
{% if message_type == 'success' %}✓{% else %}✗{% endif %} {{ message }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
📄 当前WAL文件 {{ wal_status_text }}
{% if current_wal %}
{{ current_wal.name }}
{{ "%.2f"|format(wal_size_mb|default(0.0)) }} MB
{{ current_wal.path }}
{% else %}
📭

WAL文件不存在

这通常是首次启动或WAL被清理后的正常状态
{% endif %}

📦 归档历史

{% if files %} {% for file in files %}
{{ file.name }} {{ "%.2f"|format(file.size_mb|default(0.0)) }}MB
{{ file.mtime|default('未知') }}
{% endfor %} {% else %}
📭

暂无归档文件

归档文件将在WAL轮转后生成
{% endif %}