<div class="row-fluid margin-top-2">
              
              <legend>Liste des adresses d'alerte</legend>

              <table class="table table-striped">
	              <thead>
	                <tr>
	                  <th>E-mail</th>
                    <th>#</th>
	                </tr>
	              </thead>

			           <tbody>
              
  		              <?php 
$emails = $EmailAlert->getEmails();
foreach ($emails as $key => $value) {
    echo '
  				                <tr>
  				                  <td>' . $value . '</td>
  				                  <td><a href="getcall/delalertmail.getcall.php?email=' . $value . '" onclick="return confirm(\'Supprimer cette adresse ?\');">Supprimer</a></td>
  				                </tr>
  				            ';
}
?>

               		</tbody>

            	</table>

            </div>