[FIX] Error reports
[cds-indico.git] / indico / MaKaC / webinterface / tpls / ConfModifAllContribParticipants.tpl
blob59dd6aa377d3a498ff81cbce9a071716fc51de20
1 <script type="text/javascript">
2 <!--
3 function selectAll()
5 if (!document.participantsForm.participants.length)
6         {
7             document.participantsForm.participants.checked=true
8         }else{
9 for (i = 0; i < document.participantsForm.participants.length; i++)
10     {
11     document.participantsForm.participants[i].checked=true
12     }
16 function unselectAll()
18 if (!document.participantsForm.participants.length)
19         {
20             document.participantsForm.participants.checked=false
21         }else{
22 for (i = 0; i < document.participantsForm.participants.length; i++)
23     {
24     document.participantsForm.participants[i].checked=false
25     }
28 //-->
29 </script>
30 <table width="100%">
31     <tr>
32         <td>
33             <a name="results"></a>
34             <table align="center" width="100%" border="0" style="border-left: 1px solid #777777;" cellpadding="0" cellspacing="0">
35                 <tr>
36                     <td colspan="9" style="background:#E5E5E5; color:gray">
38                         <table cellpadding="0" cellspacing="0" width="100%">
39                             <tr>
40                                 <td colspan=2 class="groupTitle" width="100%">&nbsp;&nbsp;&nbsp;${ title } (${ participantNumber })</td>
41                             </tr>
42                         </table>
43                     </td>
44                 </tr>
45                 <tr>
46                     <td colspan="9">&nbsp;</td>
47                 </tr>
48                 <form action=${ participantSelectionAction } method="post" name="participantsForm">
49                 <tr>
50                     ${ columns }
51                     ${ participants }
52                 </tr>
53                 <tr><td colspan="9">&nbsp;</td></tr>
54                 </form>
55                 <tr>
56                     <td colspan="9">&nbsp;</td>
57                 </tr>
58             </table>
59         </td>
60     </tr>
61 </table>