{% if message %}
{% if message_type == 'success' %}✓{% else %}✗{% endif %} {{ message }}
{% endif %} {% if error %}
{{ error }}
{% endif %}
⚙️ 配置签名 {{ config_signature }}
{{ config_path }}

🛡️ YARA规则统计

{% if yara_enabled %}
{% for lang, count in rule_stats.items() %}
{{ lang.upper() }} {{ count }}
{% endfor %}
{% else %}
⚠️ YARA引擎未启用或未加载规则
{% endif %}

📝 热加载历史

{% if history %} {% for line in history %}
{{ line }}
{% endfor %} {% else %}
📋

暂无热加载记录

{% endif %}
{% if total_pages > 1 %}
{{ _('Page %(page)s / %(total_pages)s (%(total)s total)', page=page, total_pages=total_pages, total=total) }}
{% endif %}