I have a template form I am working on.
<div>
<bx_repeat:data>
data set one results
</bx_repeat:data>
</div>
<div>
<bx_repeat:data>
data set two results
</bx_repeat:data>
</div>
I am getting some strange results; it is putting part of the data set one results down in the second division.
Is this possibly a parsing bug that is is not seeing the first closing of the bx_repeat? Both data set one keys and data set two keys are being pulled from the database in the same function, I just want to separate out the data in two different divisions on the page.