Skip to content
Snippets Groups Projects

Registrace

Merged Martin Mareš requested to merge mj/registrace into devel
8 files
+ 519
8
Compare changes
  • Side-by-side
  • Inline

Files

+ 14
3
@@ -29,7 +29,18 @@
{% endif %}
{% endif %}
{% if state == RoundState.preparing %}
{% if part_state == PartState.registered %}
<p>
Vaše přihláška do této soutěže <b>dosud nebyla potvrzena organizátory.</b>
Vyčkejte prosím.
{% set state = RoundState.preparing %}
</p>
{% elif part_state == PartState.refused %}
<p>
Vaše přihláška do této soutěže <b>byla odmítnuta organizátory.</b>
{% set state = RoundState.preparing %}
</p>
{% elif state == RoundState.preparing %}
<p>
Soutěžní kolo se <b>připravuje</b>{% if round.ct_tasks_start and round.ct_tasks_start > g.now %},
začne <b>{{ round.ct_tasks_start|time_and_timedelta }}</b>{% endif %}.
@@ -64,12 +75,12 @@ Pokud si s tvorbou PDF nevíte rady, zkuste se podívat do <a href='https://docs
<p>Soutěž se nachází v neznámém stavu. To by se nemělo stát :)
{% endif %}
{% if state != RoundState.preparing %}
{% if contest.ct_task_statement_available() %}
<p>Můžete si stáhnout <a href='{{ url_for('user_task_statement', id=contest.contest_id) }}'>zadání úloh</a>.
{% endif %}
{% if state != RoundState.preparing %}
<h3>Úlohy</h3>
<table class="table table-bordered table-hover">
Loading