{% extends "base.html" %}{% block title %}账号管理{% endblock %}{% block content %}

ISOLATED PROFILES

账号管理

每个账号使用独立浏览器档案;数据库不保存明文 Cookie。支持分组管理和角色绑定。

添加账号档案

账号列表

最多 50 个 · 共 {{ accounts|length }} 个
{% for account in accounts %} {% else %} {% endfor %}
别名分组角色小红书身份状态最后验证操作
{{ account.alias }}#{{ account.id }} {% if account.group_name %}{{ account.group_name }}{% else %}{% endif %}
{% set account_roles = roles_by_account.get(account.id, []) %} {% for rb in account_roles %} {{ rb.role_name }}
{% endfor %} {% if not account_roles %}{% endif %} {% if all_roles %}
{% endif %}
{{ account.nickname or '未识别' }}{{ account.xhs_user_id }} {{ account.login_status }}{% if account.last_error %}{{ account.last_error }}{% endif %} {{ account.last_verified_at or '—' }}
先创建一个账号档案
{% endblock %}