{% extends "base.html" %} {% block title %}{{ post.author.username }} 的作品 - 泸州高中摄影社论坛{% endblock %} {% block content %}
{% if not post.is_approved %}
等待审核
{% endif %}
Post image
{% if post.description %}
{{ post.description }}
{% endif %}

💬 评论 ({{ comments|length }})

{% if current_user.is_authenticated and current_user.is_approved and post.is_approved %}
{% elif not current_user.is_authenticated %}

登录 后可以发表评论

{% endif %}
{% for comment in comments %}
{{ comment.author.username[0].upper() }}
{{ comment.author.username }} {{ comment.created_at.strftime('%Y-%m-%d %H:%M') }}
{{ comment.content }}
{% endfor %} {% if not comments %}

还没有评论,快来抢沙发吧!

{% endif %}
{% endblock %}