{% extends 'base.html' %} {% block title %}个人资料{% endblock %} {% block breadcrumb %} {% endblock %} {% block content %}
{{ current_user.username[0].upper() }}
{{ current_user.username }}

{{ current_user.email }}

{{ '管理员' if current_user.is_admin else '普通用户' }} 修改密码
资源统计
{{ total }}
全部
{% for t, label, color in [('text','文本','secondary'),('image','图片','success'), ('audio','音频','warning'),('video','视频','danger')] %}
{{ by_type[t] }}
{{ label }}
{% endfor %}

注册时间: {{ current_user.created_at | datetime_fmt }}
最后登录: {{ current_user.last_login | datetime_fmt if current_user.last_login else '首次登录' }}
{% endblock %}