{% macro other(user) -%} {% if current_user.is_authenticated and current_user.id != user.id %}
{% if user.is_followed() %} {% else %} {% endif %}
{% endif %} {%- endmacro %} {% macro mine(user) -%} {% if g.user.is_authenticated and user | is_not_confirmed %}
{{ _("You haven't confirm your account,Please confirmed") }} {{ _('Activate Account')}}
{% endif %} {%- endmacro %} {% macro online(user) -%} {% if user.is_online %} {{ _('ONLINE') }} {%- else %} {{ _('OUTLINE') }} {% endif -%} {%- endmacro %}
avatar

{{ user.username}} {{ online(user) }}

第{{ user.id }}号会员/ {{user.register_time | timesince }}
{{ user.topic_count }}篇主题 | {{ user.reply_count }}条回复

{{ user.info.word }}

Someone famous in {{ user.info.school }}

1

积分

{{ user.followers.count()}}

粉丝

{{ user.following_users.count() }}

关注
{{ other(user) }} {{ mine(user) }}