{% load jmbo_template_tags jmbo_inclusion_tags pagination_tags %} {% if object_list.exists %}
{% if display_title %}{% if listing.title %}
{{ listing.title }}
{% endif %}{% endif %} {% if pinned_list %}
{% for object in pinned_list %}
{% render_object object.as_leaf_class "list_item_ipod_pinned" %}
{% endfor %}
{% endif %} {% if view_modifier %} {% view_modifier view_modifier %} {% endif %}
{% if items_per_page %} {% autopaginate object_list items_per_page %} {% endif %} {% for object in object_list %}
{% render_object object.as_leaf_class "list_item_ipod" %}
{% endfor %}
{% if items_per_page %} {% paginate %} {% endif %}
{% endif %}