{% load pagination_tags %} {% load book_short from catalogue_tags %} {% load picture_short from picture_tags %} {% autopaginate object_list 10 %} {% spaceless %}
    {% for item in object_list %}
  1. {% if item.short_html %} {{ item.short_html }} {% elif object_type == "Picture" %} {% picture_short item %} {% else %} {% book_short item %} {% endif %}
  2. {% endfor %}
{% endspaceless %} {% paginate %}