filter students
This commit is contained in:
@ -3,7 +3,7 @@
|
||||
<div class="submit-row">
|
||||
<input
|
||||
type="submit"
|
||||
value="Zaktualizuj wyniki uczniów"
|
||||
value="Wczytaj wyniki uczniów"
|
||||
name="_update-student-scores"
|
||||
/>
|
||||
<input
|
||||
|
@ -20,7 +20,7 @@
|
||||
{% else %}
|
||||
{% if ongoing.scores_eliminations %}
|
||||
<th>Liczba punktów zdobytych podczas eliminacji</th>
|
||||
{% if ongoing.entry_threshold > 0 %}
|
||||
{% if ongoing.entry_threshold >= 0 %}
|
||||
<th>Wynik eliminacji</th>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
@ -44,7 +44,7 @@
|
||||
</td>
|
||||
{% if ongoing.entry_threshold > 0 %}
|
||||
<td>
|
||||
{% if student.score_first > ongoing.entry_threshold %}
|
||||
{% if student.score_first >= ongoing.entry_threshold %}
|
||||
<b>Uczeń zakwalifikowany do finału</b>
|
||||
{% else %}
|
||||
Uczeń niezakwalifikowany do finału
|
||||
|
Reference in New Issue
Block a user