{% extends "base.html" %} {% load static %} {% block title %}用户管理 - AgomTradePro{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| 用户名 | 显示名称 | 邮箱 | 状态 | 注册时间 | 审批信息 | 操作 |
|---|---|---|---|---|---|---|
| {{ profile.user.username }} {% if profile.user.is_superuser %} 管理员 {% endif %} | {{ profile.display_name }} | {{ profile.user.email|default:"-" }} | {% if profile.approval_status == 'pending' %} 待审批 {% elif profile.approval_status == 'approved' %} 已批准 {% elif profile.approval_status == 'auto_approved' %} 自动批准 {% elif profile.approval_status == 'rejected' %} 已拒绝 {% endif %} | {{ profile.created_at|date:"Y-m-d H:i" }} |
{% if profile.approved_by %}
{{ profile.approved_by.username }}
{{ profile.approved_at|date:"Y-m-d H:i" }} {% else %} - {% endif %} |
{% if profile.rejection_reason %}
拒绝原因: {{ profile.rejection_reason }}
{% endif %}
|
| 暂无用户数据 | ||||||