{% extends 'iconolab_base.html' %} {% load staticfiles %} {% load thumbnail %} {% load iconolab_tags %} {% load notifications_tags %} {% block content %}

{% if profile_user == request.user %}Mon espace:{% else %}Profil: {% endif %} {{profile_user.username}}

{% if profile_user == request.user %} {% notifications_unread as unread_count %}

{{unread_count}} Notifications non lues Voir toutes mes notifications {% if unread_count %}Tout marquer comme lu{% endif %}

{% if unread_count %} {% endif %}
{% endif %}

{% 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}}

{% endif %}
{% endblock %} {% block footer_js %} {% endblock %}