]> git.sesse.net Git - ccbs/blobdiff - html/templates/show-tournament.tmpl
Add name= to the submit buttons, and some information fixes.
[ccbs] / html / templates / show-tournament.tmpl
index 9dc1083a09b95aa3a0b4234d85ca8c1d857cb9a0..4c02f78acde730b7f92d245c4b76bf8ff8f4b411 100644 (file)
@@ -74,6 +74,7 @@
   <div>
 
   [% FOR p = r.parallels %]
+  <form method="post" action="do-edit-scores.pl">
   <table class="scores">
     <tr>
     [% IF p.parallel == 0 %]
     <tr>
       <th>[% pl.nick %]</th>
         [% FOR s = pl.songs %]
-      <td><input name="score[% s.songnumber %]" value="[% s.score %]" size="5" /></td>
+      <td class="nowrap">
+        <input name="score[% pl.player %]-[% s.songnumber %]" value="[% s.score %]" size="5" />
+       <select name="playmode[% pl.player %]-[% s.songnumber %]">
+         <option value=""> </option>
+         [% IF s.playmode == 'single' %]
+         <option value="single" selected="selected">S</option>
+        [% ELSE %]
+         <option value="single">S</option>
+        [% END %]
+         [% IF s.playmode == 'double' %]
+         <option value="double" selected="selected">D</option>
+        [% ELSE %]
+         <option value="double">D</option>
+        [% END %]
+       </select>
+       <select name="difficulty[% pl.player %]-[% s.songnumber %]">
+         <option value=""> </option>
+         [% IF s.difficulty == 'beginner' %]
+         <option value="beginner" selected="selected">B</option>
+        [% ELSE %]
+         <option value="beginner">B</option>
+        [% END %]
+         [% IF s.difficulty == 'standard' %]
+         <option value="standard" selected="selected">S</option>
+        [% ELSE %]
+         <option value="standard">S</option>
+        [% END %]
+         [% IF s.difficulty == 'difficult' %]
+         <option value="difficult" selected="selected">D</option>
+        [% ELSE %]
+         <option value="difficult">D</option>
+        [% END %]
+         [% IF s.difficulty == 'expert' %]
+         <option value="expert" selected="selected">E</option>
+        [% ELSE %]
+         <option value="expert">E</option>
+        [% END %]
+         [% IF s.difficulty == 'challenge' %]
+         <option value="challenge" selected="selected">C</option>
+        [% ELSE %]
+         <option value="challenge">C</option>
+        [% END %]
+       </select>
+      </td>
           [% IF s.chosen %]
       <td>
-        <select name="song[% s.songnumber %]">
+        <select name="song[% pl.player %]-[% s.songnumber %]">
           <option value=""> </option>
             [% FOR ss = songs %]
               [% IF s.song == ss.song %]
         [% IF p.num_songs > 1 %]
      <td>[% pl.total %]</td>
         [% END %]
-     <td><input type="submit" value="Oppdater" /></td>
+     <td><input type="submit" name="update[% pl.player %]" value="Oppdater" /></td>
     </tr>
       [% END %]
     [% END %]
   </table>
+  </form> 
   [% END %]
 
   </div>