{% extends "base.html" %} {% load static %} {% block title %}系统初始化向导 - AgomTradePro{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
1
欢迎
2
管理员
3
AI 配置
4
数据源
5
完成
{% if messages %} {% for message in messages %}
{{ message }}
{% endfor %} {% endif %} {% if current_step == 'welcome' %} {% include "setup_wizard/steps/welcome.html" %} {% elif current_step == 'admin_password' %} {% include "setup_wizard/steps/admin_password.html" %} {% elif current_step == 'ai_provider' %} {% include "setup_wizard/steps/ai_provider.html" %} {% elif current_step == 'data_source' %} {% include "setup_wizard/steps/data_source.html" %} {% elif current_step == 'complete' %} {% include "setup_wizard/steps/complete.html" %} {% endif %}
{% endblock %}