连接状态
{% if config.status == 'online' %}
在线
{% else %}
离线
{% endif %}
最后连接
{{ config.last_connected.strftime('%Y-%m-%d %H:%M') if config.last_connected else '从未连接' }}
更新时间
{{ config.updated_at.strftime('%Y-%m-%d %H:%M') if config.updated_at else '-' }}
{% if config.last_error %}
最后错误
{{ config.last_error }}
{% endif %}