{% extends "base.html" %} {% block title %}个人中心 - 智联青云{% endblock %} {% block content %}
{% if profile_user.avatar %} {% else %} {{ profile_user.name[0]|upper }} {% endif %}
{% if profile_user.id == user.id %}
{% endif %}
Lv.{{ level }}

{{ get_display_name(profile_user.id, profile_user.name) if profile_user.id == user.id else profile_user.name }} {% if profile_user.role == 'admin' %} 管理员 {% elif profile_user.role == 'teacher' %} 👨‍🏫 认证教师 {% else %} 🎓 学生 {% endif %}

{% if profile_user.email %} {{ profile_user.email }} {% endif %} {% if profile_user.phone %} {{ profile_user.phone }} {% endif %} 加入于 {{ profile_user.created_at.strftime('%Y-%m-%d') }}

📊 活跃数据

当前等级进度 {{ points }} / {{ (level * 100) }} XP
{% set progress = (points / (level * 100) * 100) | int %} {% set p_width = progress if progress <= 100 else 100 %}
{{ points }}
总积分
{{ post_count }}
发帖数
{{ reply_count }}
回复数
{{ likes_received }}
获赞数
{% if profile_user.id == user.id %}

账号设置

用户名
{{ profile_user.name }}
{% if user.role == 'student' %}
申请成为老师
获取发布赛事和考试的权限
{% endif %} {% if user.role == 'admin' or user.role == 'teacher' %}
进入管理后台
管理系统各项数据
{% endif %}
{% endif %}
{% if profile_user.id == user.id %}
通知中心
我的消息
考试记录
我的收藏
{% endif %}
加载中...
{% endblock %} {% block scripts %} {% endblock %}