{% extends '_layout.html'|pjax:request %} {% load i18n thumbnail %} {% block main_content %}
{% for volume in LATEST_MANGA_ADDED %}

{{ volume }}

{{ volume.publisher }}
{{ volume.release_date }}

{% if forloop.counter|divisibleby:2 %}
{% endif %} {% endfor %}

{% trans "Biggest collections" %}

    {% for user in TOP_5_COLLECTORS %}
  • #{{ forloop.counter }} {{ user.username }} {% blocktrans with count=user.have_volumes.count %}{{ count }} volumes{% endblocktrans %}
  • {% endfor %}
{% endblock %}