{% extends "base.html" %} {% block title %}个人中心{% endblock %} {% block page_title %}个人中心{% endblock %} {% block styles %} {% endblock %} {% block content %}

我的题目

查看和管理您创建的所有CTF题目

全部 {{ challenge_counts.get('all', 0) }} {% for cat_id, cat_info in categories_dict.items() %} {% if challenge_counts.get(cat_id, 0) > 0 %} {{ cat_info.name }} {{ challenge_counts.get(cat_id, 0) }} {% endif %} {% endfor %}
{% if challenges %}
{% for challenge in challenges %}
{{ challenge.name }}

{{ challenge.description[:100] }}{% if challenge.description|length > 100 %}...{% endif %}

{{ challenge.created_at|beijing_time('%m-%d') }}
{% if challenge.difficulty_level %} {{ challenge.difficulty_level.name }} {% endif %}
查看题目 下载源码 {% if docker_available and (challenge.deployable is none or challenge.deployable == true) %} 部署题目 {% elif challenge.deployable == false %} 不可部署 {% endif %}
{% endfor %}
{% if challenges|length >= 10 %}
{% endif %} {% else %}

还没有生成过题目

开始创建您的第一个CTF题目吧!

{% endif %}

AI 配置

选择并配置用于题目生成的 AI 提供商

正在加载...
选择 AI 来源

选择使用系统 AI 池或配置个人 AI

从管理员配置的系统 AI 池中选择

使用自定义 API 或 Augment CLI

修改密码

更新您的账户密码

密码长度至少6个字符
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}