Hello I have to make something like this
<div class='grid'>
<div class='width-one-third'>
<li></li>
<li></li>
</div>
<div class='width-one-third'>
<li></li>
<li></li>
</div>
<div class='width-one-third'>
<li></li>
<li></li>
</div>
</div>
Here All those items on is from a table. So Here I need to run First loop for total items and each nested for 2 time. How can I in Django template?
This shoes me nested loop is possible: Nested loop in Django template
{% for blogs in blogs %}-
{% endfor %}