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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
| <table class="nwResultats" cellspacing="0">
<thead>
<tr>
<th class="tl" colspan="9"> Résultats / Calendrier </th>
</tr>
</thead>
<tbody>
{def $countCompet = 0}
{def $dateSaison = ''}
{foreach $events.toArray as $event}
{ set $countCompet = $countCompet + 1}
<tr>
<th class="tl" colspan="9">
{$event.getDate}
</th>
</tr>
<tr class="alt">
<td> {$event.date.toString} </td>
<td> {$event.time} </td>
<td class="tc nowrap">{$event.compet} </td>
<td class="tc">{format($event.day)}</td>
<td class="tr">
<b>
<span class="def">D</span> <br />
</b>
</td>
<td class="tr nowrap">
<a href="/rugby/equipes/agen.html">
{$event.getTeam1}
</a>
<img src='/rugby/images/clubs/15/agen.png' class='vm' alt='Agen'/>
</td>
<td class="tc nowrap">
<b>
<a href="/rugby/directs/2013/top-14/7332/agen-racing-metro-92.html">
<b>
{$event.score1}-{$event.scor2}
</b>
</a>
</b>
</td>
<td class="tl nowrap">
<img src='/rugby/images/clubs/15/racing-metro-92.png' class='vm' alt='Racing-Métro 92'/>
<a href="/rugby/equipes/racing-metro-92.html">
<b>{$event.getTeam2}</b>
</a>
</td>
<td>
{if $countCompet|eq(1) || $dateSaison|ne($event.getDate)}
<a href="/rugby/directs/2013/top-14/7332/agen-racing-metro-92.html">
Direct
</a>
{else}
Direct
{/if}
</td>
</tr>
{set $dateSaison = $event.getDate}
{/foreach} |
Partager