Basically, I want to use a Bootstrap Carousel with a queryset. My question is as to how I should iterate over the queryset so that I can put three objects into a div and then the next three into another div and so on depending on the size of the queryset. See the preudocode below.
{% for group in object_list/3 %}
<div class="">
{% for object in group %}
<p>{{object}}</p>
{% endfor %}
</div>
{% endfor %}