{% extends 'base.html' %} {% block title %}主页{% endblock %} {% block content %}

{{ user.username }}

{% if current_user.is_authenticated and current_user.id != user.id %} 关注 {% endif %}

{{ user.profile.bio }}


作品
{% for p in user.posts %}
{{ p.title }}
{% endfor %}
{% endblock %}