{% autopaginate object_list 10 %}
{% paginate %}
{% for item in object_list %}
{% with item.get_absolute_url as item_url %}
{% endwith %}
{% endfor %}
{% paginate %}
{{ item }}
-
{% if item.plain_description %}
{% trans "Description" %}: {{ item.plain_description|truncatewords:20 }}
{% endif %}
{% if with_rating %}- {% ratingform item readonly %} {% endif %}