]> git.sesse.net Git - ccbs/blobdiff - html/templates/song.tmpl
Lots of translation updates.
[ccbs] / html / templates / song.tmpl
index 5f18e5eb38d3fdb613225e9eb8deead22c9d86c3..a275389574818884bc57272b02acaaa0832d6b5d 100644 (file)
   <h2>Beste scores</h2>
 
   <div>
-    <table>
+    <table class="scores">
       <tr>
+        <th></th>
         <th>Spiller</th>
         <th>Poengsum</th>
         <th>Arrangement</th>
       </tr>
-      
+
+[% SET rowno = 1 %]
 [% FOR s = scores %]
       <tr>
-        <td>[% s.nick %]</td>
+        <th>[% rowno %]</th>
+[% SET rowno = rowno + 1 %]
+        <td><a href="player.pl?id=[% s.player %]">[% s.nick %]</a></td>
         <td>[% s.score %]</td>
         <td><a href="show-tournament.pl?id=[% s.tournament %]">[% s.tournamentname %]</a></td>
       </tr>