{% paginate history.items by 25 %} {% for item in history.items %}

{{ item.name }}

{% comment %} The item.release_information attribute combines three attributes into an array that can be passed to the join filter: * item.released_on * item.released_by * item.catalog_number You can use each of the above three separate attributes rather than the single release_information attribute. {% endcomment %} {{ item.release_information | join: ' · ' }}
{{ item.description | simple_format }}
{% endfor %}
{{ history.items_pagination }}
{% endpaginate %}