{% 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 annotation in user_annotations.all %}
{% include "partials/user_pages/annotations_created_panel.html" with annotation=annotation user=profile_user %}
{% endfor %}
{% if profile_user == request.user %}Mes contributions :{% else %}Contributions de {{profile_user.username}}{% endif %}
{% if profile_user == request.user %}
Dernières annotations sur lesquelles j'ai proposé des révisions :
{% else %}
Dernières annotations sur lesquelles {{profile_user.username}} a proposé des révisions :
{% endif %}
{% if not user_contributed_annotations %}
Aucune annotation à afficher
{% else %}
{% for annotation_data in user_contributed_annotations %}
{% include "partials/user_pages/annotations_contributed_panel.html" with annotation_data=annotation_data user=profile_user %}
{% endfor %}
{% if profile_user == request.user %}
Dernières annotation sur lesquelles j'ai commenté (sans proposer de révision) :
{% else %}
Dernières annotations sur lesquelles {{profile_user.username}} a commenté (sans proposer de révision) :
{% endif %}
{% if not user_commented_annotations %}
Aucune annotation à afficher
{% else %}
{% for annotation_data in user_commented_annotations %}
{% include "partials/user_pages/annotations_commented_panel.html" with annotation_data=annotation_data user=profile_user %}
{% endfor %}