summaryrefslogtreecommitdiff
path: root/static/group-form.html
blob: 0d0fe6e4b6149bb7413d2cadfb8a3ebb8a597ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<div class="col-sm-4">
  <p>
    Wpisz poniżej PZBS ID zawodników w parze/teamie, po jednym w każdej nowej linii.
  </p>
  <p>
    Dla niezrzeszonych, podaj 0.
  </p>
  <form>
    <div class="form-group">
      <label for="group-pids">PZBS ID:</label>
      <textarea id="group-pids" class="form-control" rows="6"></textarea>
    </div>
    <button id="group-submit" type="button" class="btn btn-default">Przelicz</button>
  </form>
  <br />
  <table id="group-results" class="table history">
    <tr class="mean">
      <th><abbr title="Średnia miejsc">ŚM</abbr></th>
      <td colspan="2" class="mean-place text-right"></td>
    </tr>
    <tr class="mean">
      <th><abbr title="Średnia arytmentyczna">ŚA</abbr></th>
      <td colspan="2" class="mean-arithmetic text-right"></td>
    </tr>
    <tr class="mean">
      <th><abbr title="Średnia geometryczna">ŚG</abbr></th>
      <td colspan="2" class="mean-geometric text-right"></td>
    </tr>
    <tr class="mean">
      <th><abbr title="Średnia harmoniczna">ŚH</abbr></th>
      <td colspan="2" class="mean-harmonic text-right"></td>
    </tr>
  </table>
</div>
<div class="col-sm-8">
  <p>
    Możesz również wczytać plik pełnych wyników turnieju z JFR Pary (plik W-*.html), żeby wyświetlić statystyki wszystkich par grających w turnieju.
  </p>
  <form>
    <input type="file" id="tournament-file" />
  </form>
  <br />
  <table id="tournament-table" class="table history">
    <thead>
      <tr>
        <th data-sort-method="number">M-ce</th>
        <th data-sort-method="none">Para</th>
        <th data-sort-method="dotsep">
          <abbr title="Średnia miejsc">ŚM</abbr>
        </th>
        <th data-sort-method="dotsep">
          <abbr title="Średnia arytmetyczna">ŚA</abbr>
        </th>
        <th data-sort-method="dotsep">
          <abbr title="Średnia geometryczna">ŚG</abbr>
        </th>
        <th data-sort-method="dotsep">
          <abbr title="Średnia harmoniczna">ŚH</abbr>
        </th>
      </tr>
    </thead>
    <tbody>
    </tbody>
  </table>
</div>
<script src="_res/jquery-2.2.4.min.js"></script>
<link rel="stylesheet" href="_res/fileinput.min.css" />
<script src="_res/fileinput.min.js"></script>
<link rel="stylesheet" href="_res/tablesort.css" />
<script src="_res/tablesort.min.js"></script>
<script src="_res/group-ranking.js"></script>