The way it's usually done, I think, would be to create a template for one battle vote, then fetch and eval the template in the loop, adding it to the end of a variable. Then put that variable in the page template. Like maybe:
Code:
while ($get = $db->fetch_array($result))
{
eval('$battle_votes .= "' . fetch_template('battle_vote') . '";');
}
...and of course you'd use '$get' to put the values in the battle_vote template, and $battle_votes to include the entire thing in the battle_statistics template.