1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<table width="100%" align="left" cellspacing="0">
<tr>
<th class="titre"><input type="checkbox" name="idFiche" value="0"/></th>
<th class="titre">Nom</th>
<th class="titre">Prénom</th>
<th class="titre">Organisme</th>
<th class="titre">Téléphone</th>
<th class="titre">Fax</th>
<th class="titre">Mail</th>
</tr>
<c:forEach items="${ajoutManuelForm.listFiches}" var="fiche" varStatus="status">
<tr>
<td class="resultat">
<input type="checkbox" name="idFiche" value="<c:out value="${fiche[0]}"/>"/></td>
<td class="resultat"><c:out value="${fiche[2]}"/></td>
<td class="resultat"><c:out value="${fiche[3]}"/></td>
<td class="resultat"><c:out value="${fiche[1]}"/></td>
<td class="resultat"><c:out value="${fiche[4]}"/></td>
<td class="resultat"><c:out value="${fiche[5]}"/></td>
<td class="resultat"><c:out value="${fiche[6]}"/></td>
</tr>
</c:forEach>
</table> |