{% macro photo_card(photo) %}
{{ photo.collectors|length }} {{ photo.comments|length }}
{% endmacro %} {% macro user_card(user) %}
{{ user.name }}
{{ follow_area(user) }}
{% endmacro %} {% macro follow_area(user) %} {% if current_user.is_authenticated %} {% if user != current_user %} {% if current_user.is_following(user) %}
{% if current_user.is_followed_by(user) %}

互相关注

{% endif %}
{% else %}
{% if current_user.is_followed_by(user) %}

关注了你

{% endif %}
{% endif %} {% endif %} {% else %}
{% endif %} {% endmacro %}