{% block styles %}{% endblock %}
{% block page_title %}{% endblock %}
{% if g.user %}
{{ g.user.username[0]|upper }}
{{ g.user.username }}
个人资料
{% if g.user.role in ['admin', 'moderator'] %}
后台设置
{% else %}
个人设置
{% endif %}
退出登录
{% else %}
登录
注册
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}