{% extends 'iconolab/user_base.html' %} {% load staticfiles %} {% load thumbnail %} {% load iconolab_tags %} {% load notifications_tags %} {% block user_content %}

{% 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 %} Voir toutes les annotations {% endif %}

{% 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 %}
  • Voir toutes les contributions
{% endif %}
{% 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 %}
  • Voir toutes les annotations commentées
{% endif %}
{% endblock %} {% block footer_js %} {% endblock %}