28 lines
778 B
HTML
28 lines
778 B
HTML
<div>
|
|
<h2>Statystyki i Ustalanie Wag</h2>
|
|
<!-- Wprowadź elementy do zarządzania wagami, np. suwaki lub pola numeryczne -->
|
|
<label for="waga-pomoc">Pomoc nauczycielowi:</label>
|
|
<input type="number" id="waga-pomoc" value="10"><br>
|
|
|
|
<label for="waga-spoznienie">Spóźnienie:</label>
|
|
<input type="number" id="waga-spoznienie" value="-5"><br>
|
|
|
|
<!-- Więcej wag dla innych kryteriów -->
|
|
|
|
<h3>Statystyki dla uczniów</h3>
|
|
<!-- Tabela statystyk dla uczniów -->
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Uczeń</th>
|
|
<th>Punkty</th>
|
|
<th>Ocena</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<!-- Dane będą dynamicznie ładowane -->
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|