1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<table style="text-align: left; width: 500px;" border="0" cellpadding="2" cellspacing="2">
<tbody>
<tr bgcolor="#ADD8E6" >
<td>
<span style="color: rgb(255, 255, 255);"><small style="font-weight: bold;">
<span style="font-family: Arial;"> date</span>
</small></span></td>
<td>
<span style="color: rgb(255, 255, 255);">
<small style="font-weight: bold;">
<span style="font-family: Arial;"> auteur</span>
</small></span></td>
<td>
<span style="color: rgb(255, 255, 255);">
<small style="font-weight: bold;">
<span style="font-family: Arial;"> contenu</span></small></span></td>
</tr>
<logic:iterate id="Shift" name="LISTSHIFTS" property="listeShift"
indexId="cpt">
<%
String colorLine="white";
if((cpt.intValue()%2)==0)
{
colorLine="#B0C4DE";
System.out.println("compteur"+cpt.intValue());
}
else{colorLine="#B0C4DE";}
%>
<tr bgcolor='<%=colorLine%>'>
<td>
<small style="font-weight: bold;">
<span style="font-family: Arial;">
<bean:write name="Shift" property="dateShift"/></span></small></td>
<td><small style="font-weight: bold;">
<span style="font-family: Arial;">
<bean:write name="Shift" property="auteurShift"/>
</span></small></td>
<td>
<small style="font-weight: bold;">
<span style="font-family: Arial;">
<bean:write name="Shift" property="contenuShift"/></span>
</small></td>
</tr>
</logic:iterate>
</tbody>
</table> |
Partager