Changeset 14 for src/main/webapp/newtournament.xhtml
- Timestamp:
- 06/11/20 16:34:50 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/webapp/newtournament.xhtml
r12 r14 18 18 </select> 19 19 <br /> 20 <br /> 21 <input type="number" id="teamspersession" name="tentacles" min="2" 22 max="10" value="2" /> Number of teams in each session 20 <input type="number" id="ntournaments" min="1" max="1000000" value="1" /> 21 Number of times to repeat the entire tournament 22 <br /> 23 24 <br /> 25 <input type="number" id="teamspersession" min="2" max="10" value="2" /> 26 Number of teams in each session 23 27 <br /> 24 28 … … 103 107 <th align="left">Party</th> 104 108 <th align="left">Parameters</th> 105 <th align="left"><div class="onlySHAOP">Compare Bids Party</div></th> 106 <th align="left"><div class="onlySHAOP">Compare Bids Parameters</div></th> 109 <th align="left"><div class="onlySHAOP">Compare Bids 110 Party</div></th> 111 <th align="left"><div class="onlySHAOP">Compare Bids 112 Parameters</div></th> 107 113 </thead> 108 114 <tbody id="teamList"> … … 127 133 128 134 <script type="application/javascript"> 135 129 136 130 137 … … 506 513 function makeRequest() { 507 514 const npersession = document.getElementById("teamspersession").value; 515 const ntournaments = document.getElementById("ntournaments").value; 508 516 const reuseTeams = document.getElementById("reuseteams").checked; 509 517 const protocolcombobox = document.getElementById("protocolselection"); … … 540 548 541 549 return JSON.stringify({"AllPermutationsSettings":{"teams":teamsFull,"profileslists":profilesFull, 542 "reuseTeams":reuseTeams,"teamsPerSession":npersession,"sessionsettings":sessionSettings}}); 550 "reuseTeams":reuseTeams,"teamsPerSession":npersession,"sessionsettings":sessionSettings, 551 "numberTournaments":ntournaments}}); 543 552 } 544 553 … … 547 556 */ 548 557 function init() { 549 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4. 0";550 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4. 0";558 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.4.1"; 559 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.4.1"; 551 560 552 561 selectProtocol(); … … 570 579 571 580 581 572 582 </script> 573 583
Note:
See TracChangeset
for help on using the changeset viewer.