{% extends 'iconolab/user_base.html' %} {% load thumbnail %} {% load humanize %} {% block user_content %} {% if bookmarks_by_category|length == 0 %}
Aucun favori pour le moment.
{% else %} {% for bookmarks_category in bookmarks_by_category %}

{{ bookmarks_category.category.name }}

{% for bookmark in bookmarks_category.bookmarks %} {% endfor %}
Collection Catégorie
{% thumbnail bookmark.image.media "100x100" crop=False as thumbnail %} {% endthumbnail %} {{ bookmark.image.item.collection.verbose_name }} {% if request.user.is_authenticated and profile_user == request.user %}
{% csrf_token %}
{% else %} {{ bookmark.category.name }} {% endif %}
{{ bookmark.created|naturaltime }} {% if request.user.is_authenticated and profile_user == request.user %}
{% csrf_token %}
{% endif %}
{% endfor %} {% endif %} {% endblock %} {% block footer_js %} {% endblock %}