{% load i18n %} {% comment %} {% extends 'users/profile.html'|pjax:request %} {% block page_title %}{{ block.super }}{% endblock %} {% endcomment %} {% block profile_content %}
{% trans "Today" %}

{{ item.have_volumes.count }} {% blocktrans with count=item.read_volumes.count %}({{ count }} read){% endblocktrans %}

{% trans "Volumes owned" %}

{{ item.wishlisted_volumes.count }}

{% trans "Volumes wishlisted" %}

{% regroup timeline by date|date:'F, Y' as timeline_dates %} {% for dates in timeline_dates %}
{{ dates.grouper }}
{% regroup dates.list by date|date:'d' as month_events %} {% for day in month_events %}
{{ day.grouper }}
{% for event in day.list %}

{% if event.event_type == 'read' %} {% elif event.event_type == 'have' %} {% elif event.event_type == 'wishlist' %} {% endif %} {{ event.timeline_message }}

{% endfor %}
{% endfor %} {% endfor %}
...
{% endblock %}