{% if profile_user == request.user %}Mes annotations:{% else %}Annotations de {{profile_user.username}}{% endif %}
{% if not user_annotations %}
Aucune annotation à afficher
{% else %}
{% for annotation in user_annotations.all %}
{% include "partials/user_page_annotation_panel.html" with annotation=annotation %}
{% endfor %}
{% endif %}
{% if profile_user == request.user %}Mes autres contributions:{% else %}Contributions de {{profile_user.username}}{% endif %}
{% if profile_user == request.user %}
Annotations sur lesquelles j'ai proposé des révisions
{% else %}
Annotations sur lesquelles {{profile_user.username}} a proposé des révisions:
{% endif %}
{% if not user_revisions_annotations %}
Aucune annotation à afficher
{% else %}
{% for annotation in user_revisions_annotations.all %}
{% include "partials/user_page_annotation_panel.html" with annotation=annotation %}
{% endfor %}
{% endif %}
{% if profile_user == request.user %}
Annotations sur lesquelles j'ai commenté (sans proposer de révision):
{% else %}
Annotations sur lesquelles {{profile_user.username}} a commenté (sans proposer de révision):
{% endif %}
{% if not user_comments_annotations %}
Aucune annotation à afficher
{% else %}
{% for annotation in user_comments_annotations.all %}
{% include "partials/user_page_annotation_panel.html" with annotation=annotation %}
{% endfor %}
{% endif %}
{% if profile_user == request.user and profile_user.profile.administers_collection %}
L'accès à ces fonctionnalités n'est pas encore disponible.
Administration du Fonds {{user.profile.administers_collection.verbose_name}}