{% extends "base.html" %} {% block title %}系统配置 - Andon 安灯系统{% endblock %} {% block content %}

⚙️ 系统配置

{% if show_login %} {# 管理员登录表单 #}

管理员登录

默认密码:admin123

{% else %} {# 配置管理界面 #}
工位列表
{% for station in stations %} {% endfor %}
工位ID 工位名称 状态 操作
{{ station.station_id }} {{ station.station_name }} {% if station.is_active %} 启用 {% else %} 禁用 {% endif %}
异常类型列表
{% for cat in categories %} {% endfor %}
类型名称 颜色 显示顺序 操作
{{ cat.name }} {{ cat.color }} {{ cat.display_order }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}