{% spaceless %} {% load cache %} {% load pagination_tags %} {% load class_name from catalogue_tags %} {% load status from catalogue_tags %} {% autopaginate object_list 10 %}
    {% for item in object_list %}
  1. {% if item|class_name == 'Book' %} {% include "catalogue/book_short.html" with book=item %} {% else %} {{ item.midi_box }} {% endif %}
  2. {% endfor %}
{% paginate %} {% endspaceless %}