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
|
<table border="0" width="30%">
<tr>
<c:if test="${actuel > 1}">
<td>
<html:link action="/workorders/searchTactile.html">
precedent
<html:param name="pageindex" value="${actuel-1}" />
<html:param name="pagetotal" value="${total}"/>
</html:link>
</td>
</c:if>
<c:if test="${total > actuel}">
<td>
<html:link action="/workorders/searchTactile.html">
suivant
<html:param name="pageindex" value="${actuel + 1}" />
<html:param name="pagetotal" value="${total}" />
</html:link>
</td>
</c:if>
</tr>
</table> |