テンプレートに 6 つのサムネイルのグループを表示してフィルムストリップを作成するにはどうすればよいですか。for ループを反復処理しているリストには、約 30 個の項目があり、6 個のチャンクに分割してフィルムストリップ スライダーとして表示したいと考えています。for ループに範囲関数を使用しようとしましたが、うまくいきません
<div class="carousel-inner">
<div class="item active">
<ul class="thumbnails">
{% for show in object_list %}
<li class="span2">
<div class="thumbnail">
<a href="{{ show.get_absolute_url }}" data-title="{{ show.name }}" >
{% if show.images.exists %}
{% with show.images.all.0.image as show_image %}
<img src="{% thumbnail show_image 160x160 crop %}" alt="{{show.name}}" class="thumbnail">
{% endwith %}
{% else %}
<img src="{% static 'img/default-image.gif' %}" alt="{{show.name}}" class="thumbnail">
{% endif %}
</a>
</div>
</li>
{%endfor%}
</ul>
</div>