{% extends base.html %} {% block content %}
{#

设置Kindle推送需先将{{ handler.app.email.sender }}添加到已认可的发件人电子邮箱列表

#}

用户ID:{{ current_user.id }}

用户名:{{ current_user.username or current_user.nickName }}

{% if current_user.email %}

邮箱:{{ current_user.email }}

{% end %} {% if current_user.admin %}

当前会员等级:管理员

{% elif current_user.vip %}

当前会员等级:{{ handler.app.vip_map[current_user.vip] }}   {% if handler.app.auth_server %} 续费 升级 {% end %}

{% for i in range(1, 5) %} {% if getattr(current_user, f'vip{i}_expired_at') %}

{{ handler.app.vip_map[i] }}到期时间:{{ str(getattr(current_user, f'vip{i}_expired_at'))[:19] }}

{% end %} {% end %} {% else %}

当前会员等级:免费版   {% if current_user.deny %}您因访问超限已被禁用,请{% elif current_user.suspend %}您因访问超限已被暂停上传,请{% end %} 升级

{% end %} {% if current_user.admin or current_user.vip %}

您的token:{{ current_user.token }}  

{% end %} {% if not current_user.vip %}

您的token:获取token

{% end %}

在此处修改您的密码,如果忘记了原密码,请选择 重置密码

{% end %}