</header>

	<h1><?php 
echo TEST_NAME;
?>
</h1>
	
	<em style="font-weight:bold;"><a href="https://github.com/julien-boudry/Condorcet" target="_blank">Condorcet Class</a> version : <?php 
echo Condorcet::getVersion();
?>
</em><br>

	<em>
		Number of Candidates : 
		<?php 
echo $election->countCandidates();
?>
		|
		Number of votes :
		<?php 
echo $election->countVotes();
?>
	</em>

	<h2>Candidates list :</h2>

	<ul>
	<?php 
foreach ($election->getCandidatesList() as $candidatName) {
    echo '<li>' . $candidatName . '</li>';
}