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

{% if user and user.is_authenticated %} 你好,{{ user.name }}! {% else %} 你好,游客! {% endif %}

{% with messages = get_flashed_messages() %} {% if messages %}
{{ messages[0] }}
{% endif %} {% endwith %} {% if user and user.is_authenticated %} {% if user.isActivated %} {% else %}

您的账号暂未激活。

如未收到激活码邮件,请联系管理员处理


{% endif %} {% else %} {% endif %}
{% if homepage_notice %}

公告栏

{{ homepage_notice }}
{% endif %}
{% endblock content %}