{% extends "base.html" %} {% block title %}{{ user.username }} 关注的人 - 泸州高中摄影社论坛{% endblock %} {% block content %}
{% if following %}
{% for followed_user in following %}
{{ followed_user.username[0].upper() }}
{{ followed_user.username }}

{{ followed_user.get_follower_count() }} 粉丝 · {{ followed_user.posts.count() }} 作品

{% endfor %}
{% else %}

还没有关注任何人

{% endif %}
{% endblock %}