{% extends 'iconolab_base.html' %} {% load staticfiles %} {% load thumbnail %} {% load iconolab_tags %} {% load notifications_tags %} {% block content %} {% if profile_user == request.user %}

Coordonnées

{% csrf_token %}
{% if user_form.email.errors %} {{ user_form.email.errors | striptags }} {% endif %}
{% endif %}

Notifications

{% 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 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 %}
  • 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 %}
{% if profile_user.profile.managed_collections %}

Administration de Fonds:

{% for collection in profile_user.profile.managed_collections.all %}

{{collection.verbose_name}}

Tableau de bord
{% endfor %}
{% endif %}
{% endblock %} {% block footer_js %} {% endblock %}