{% if profile_user == request.user %}Mes dernières annotations{% else %}Dernières annotations de {{profile_user.username}}{% endif %}
{% if not user_annotations %}
Aucune annotation à afficher
{% else %}
{% for activity_item in user_activity %}
{% include "partials/user_pages/activity.html" with user=profile_user annotation=activity_item.annotation action=activity_item.action %}
{% endfor %}