{% from 'bootstrap5/utils.html' import render_icon %} {% macro photo_card(photo) %}
{{ render_icon('suit-heart-fill') }} {{ photo.collectors_count }} {{ render_icon('chat-left-fill') }} {{ photo.comments_count }}
{% 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) %}

Follow each other

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

Follows you

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