{% extends 'base.html' %} {% block title %}作品详情{% endblock %} {% block content %}
{{ post.user.username[:1]|upper }}

{{ post.title }}

{{ post.user.username }}
{% if current_user.is_authenticated and current_user.id != post.user.id %} 关注作者 {% endif %}

{{ post.description }}

{{ post.visibility.value }}
{% for img in post.images %}
{% endfor %}

{% endblock %}