{% extends "base.html" %} {% block title %}首页{% endblock %} {% block content %}

最新帖子

{% for post in posts.items %}
{{ post.author.username }}
{{ post.author.username }}
{{ post.date_posted.strftime('%Y-%m-%d %H:%M') }} {% if post.author.last_seen %} • 最后活跃: {{ moment(post.author.last_seen).fromNow() }} {% endif %}

{{ post.title }}

{{ post.content }}

{% endfor %}
{% if posts.has_prev %} 上一页 {% else %} 上一页 {% endif %} {% if posts.has_next %} 下一页 {% else %} 下一页 {% endif %}
{% if 'user_id' in session %}
{{ current_user.username if current_user else '用户' }}

{{ current_user.username if current_user else '用户' }}

{{ current_user.email if current_user else '' }}

{{ current_user.posts|length if current_user else '0' }}
帖子
{{ current_user.comments|length if current_user else '0' }}
评论
0
粉丝
发布新帖子
{% else %}

欢迎来到论坛

注册并登录,加入我们的社区,分享你的想法和见解。

{% endif %}

活跃用户

{% for user in User.query.order_by(User.posts.count().desc()).limit(5).all() %}
{{ user.username }}
{{ user.username }}
{{ user.posts|length }} 帖子 • 最后活跃: {{ moment(user.last_seen).fromNow() }}
{% endfor %}
{% endblock %}