{% if seo %} {% for hreflang, href in seo.alternate_links.items() %} {% endfor %} {% if seo.feed_url %} {% endif %} {% if seo_schema %} {% endif %} {% endif %} {% set sb = sidebar if sidebar is defined else {'total_users': 0, 'total_posts': 0, 'total_comments': 0, 'category_counts': []} %}
中文 | English {% if current_user %} {{ current_user.username }}{% if current_user.is_banned %}{{ l('(封禁)', ' (Banned)') }}{% endif %} {{ l('个人中心', 'Profile') }} {{ l('通知', 'Notifications') }}{% if notifications_unread_count %}{{ notifications_unread_count }}{% endif %} {{ l('退出', 'Logout') }} {% else %} {{ l('登录', 'Login') }} {{ l('注册', 'Register') }} {% endif %}
{{ post.category or l('综合讨论', 'General') }} {% if post.is_pinned %}{{ l('置顶', 'Pinned') }}{% endif %} {% if post.is_featured %}{{ l('精华', 'Featured') }}{% endif %} {% if post.is_locked %}{{ l('锁帖', 'Locked') }}{% endif %} {% if post.created_at %} {% endif %} {{ l('浏览', 'Views') }} {{ post.view_count or 0 }} {{ l('点赞', 'Likes') }} {{ like_count or 0 }} {{ l('收藏', 'Bookmarks') }} {{ bookmark_count or 0 }}

{{ post.title }}

{% if current_user and can_interact %}
{% elif current_user and not can_interact %} {{ l('账号被封禁,暂不可互动', 'Your account is banned. Interaction is disabled.') }} {% else %} {{ l('登录后点赞/收藏', 'Login to like/bookmark') }} {% endif %} {% if current_user and current_user.id == post.user_id and can_interact %} {{ l('编辑帖子', 'Edit Topic') }}
{% elif current_user and current_user.id == post.user_id and not can_interact %} {{ l('账号封禁中,无法编辑或删除帖子', 'Account banned. Editing/deleting is disabled.') }} {% elif current_user and can_interact %}
{% endif %}
{{ post.content|markdown_html }}

{{ l('评论', 'Comments') }}({{ comments|length }})

{% if message %}

{{ message }}

{% endif %} {% if error %}

{{ error }}

{% endif %} {% if post.is_locked %}

{{ l('该帖子已锁定,暂不允许新增评论。', 'This topic is locked. New comments are disabled.') }}

{% elif current_user and can_interact %}
{{ l('支持 Markdown 代码块。', 'Markdown code blocks are supported.') }}
{% elif current_user and not can_interact %}

{{ l('账号被封禁,暂不可评论。', 'Your account is banned. Commenting is disabled.') }}

{% else %}

{{ l('请先', 'Please') }} {{ l('登录', 'log in') }} {{ l('后评论。', 'to comment.') }}

{% endif %} {% if comments %}
    {% for c in comments %}
  • {{ (c.author_rel.username[0] if c.author_rel and c.author_rel.username else '?')|upper }}
    {{ c.author_rel.username if c.author_rel else l('已注销用户', 'Deleted user') }} {% if c.created_at %} {% endif %}
    {{ c.content|markdown_html }}
    {% if current_user and current_user.id == c.user_id and can_interact %} {{ l('编辑', 'Edit') }}
    {% elif current_user and current_user.id == c.user_id and not can_interact %} {{ l('账号封禁中', 'Account banned') }} {% elif current_user and can_interact %}
    {% endif %}
  • {% endfor %}
{% else %}

{{ l('还没有评论,欢迎抢沙发。', 'No comments yet. Be the first to reply.') }}

{% endif %}