22/10/2010, 10:29:52
http://www.smarty.net/manual/fr/language...oreach.php
ca devrait pourtant !
Citation :.first
first vaut TRUE si l'itération courante de {foreach} est l'initial.
Exemple 7-12. Exemple avec first
{* affiche LATEST sur le premier élément, sinon, l'id *}
<table>
{foreach from=$items key=myId item=i name=foo}
<tr>
<td>{if $smarty.foreach.foo.first}LATEST{else}{$myId}{/if}</td>
<td>{$i.label}</td>
</tr>
{/foreach}
</table>
ca devrait pourtant !