Skip to content
Snippets Groups Projects

Zadávání bodů a zobrazení výsledků

Merged Jiří Setnička requested to merge jirka/score into devel
All threads resolved!
9 files
+ 225
9
Compare changes
  • Side-by-side
  • Inline

Files

+ 6
1
@@ -24,11 +24,16 @@
<div class="btn-group">
<a class="btn btn-primary" href='{{ url_for('org_contest_list', id=contest.contest_id, site_id=site_id) }}'>Seznam účastníků</a>
<a class="btn btn-primary" href='{{ url_for('org_contest_solutions', id=contest.contest_id, site_id=site_id) }}'>Odevzdaná řešení</a>
{% if not site and can_manage %}
{% if not site %}
{% if round.state in [db.RoundState.grading, db.RoundState.closed] %}
<a class="btn btn-primary" href='{{ url_for('org_score', contest_id=contest.contest_id) }}'>Výsledky</a>
{% endif %}
{% if can_manage %}
<a class="btn btn-default" href='{{ url_for('org_contest_import', id=contest.contest_id) }}'>Importovat účastníky</a>
<a class="btn btn-default" href='{{ url_for('org_proctor_import', id=contest.contest_id) }}'>Importovat dozor</a>
<a class="btn btn-default" href='{{ url_for('org_judge_import', id=contest.contest_id) }}'>Importovat opravovatele</a>
{% endif %}
{% endif %}
</div>
{% if not site %}
Loading