I'd like to generate a template with something like this:
<ul>
<li>A B C D</li>
<li>E F G H</li>
</ul>
The data i'm providing to the template is a cursor that has 8 rows (one for each letter).
I know I could do a fetch and split the results in groups of 4, but if I'm not mistaken, the fetch is less efficient, if e.g. I update the value of A to 1, it reloads everything.
Any suggestion on how to do this is appreciated.