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

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

{% if user and user.is_authenticated %} {% if user.isActivated %} {% else %}

您的账号暂未激活,请等待管理员激活此账号。

{% endif %} {% else %} {% endif %} {% with messages = get_flashed_messages() %} {% if messages %}
{{ messages[0] }}
{% endif %} {% endwith %}
{% if homepage_notice %}

公告栏

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