#set($parts = $api.get("tour/${params.id}/part")) #set($pmap = $utils.toMap($parts))
Reg | Name | First name | Country | Club | #if($tour.country == 'FR')FFG | #elsePIN | #endRank | ## TableSort bug which inverts specified sort...Rating | Participation | #foreach($part in $parts)
---|---|---|---|---|---|---|---|---|---|
$part.name | $part.firstname | $part.country.toUpperCase() | $part.club | #if($tour.country == 'FR')$!part.ffg | #else$!part.egf | #end#rank($part.rank)#if($part.mmsCorrection) (#if($part.mmsCorrection > 0)+#end$part.mmsCorrection)#end | $part.rating |
#foreach($round in [1..$tour.rounds])
## CB TODO - upstream json parsing should not give longs here, should it?
#if($part.skip && $part.skip.contains($round.longValue()))
#else
#end
#end
|