{% extends "base.html" %} {% block title %}{{ user.username }} - 泸州高中摄影社论坛{% endblock %} {% block content %}
{{ user.username[0].upper() }}

{{ user.username }}

{% if not user.is_approved %}
等待审核
{% endif %} {% if user.bio %}

{{ user.bio }}

{% endif %} {% if current_user.is_authenticated and current_user.id != user.id %} {% if is_following %}
{% else %}
{% endif %} {% endif %}

📸 作品集

{% if posts %}
{% for post in posts %}
Post image {% if not post.is_approved %}
审核中
{% endif %}
{% endfor %}
{% else %}
📷

该用户还没有发布作品

{% endif %}
{% endblock %}